19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
# Description: a library for import of Aldus/Macromedia/Adobe FreeHand documents
|
|
# URL: https://wiki.documentfoundation.org/DLP/Libraries/libfreehand
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: lcms2 librevenge icu
|
|
|
|
name=libfreehand
|
|
version=0.1.2
|
|
release=2
|
|
source=(https://dev-www.libreoffice.org/src/libfreehand/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-werror \
|
|
--without-docs
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|