blob: d038e332591639c494b0705f615f47546d9d1a0a (
plain)
1 # Description: a library for import of Aldus/Macromedia/Adobe FreeHand documents
2 # URL: https://wiki.documentfoundation.org/DLP/Libraries/libfreehand
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: lcms2 librevenge icu
5
6 name=libfreehand
7 version=0.1.2
8 release=3
9 source=(https://dev-www.libreoffice.org/src/libfreehand/$name-$version.tar.xz
10 0001-Add-missing-semicolon-to-fix-build-with-icu-65.1.patch)
11
12 build() {
13 cd $name-$version
14 patch -Np1 -i $SRC/0001-Add-missing-semicolon-to-fix-build-with-icu-65.1.patch
15 ./configure --prefix=/usr \
16 --disable-werror \
17 --without-docs
18 make
19 make DESTDIR=$PKG install
20 }
|