blob: 50dd344176382163339094ae010f7c7bba5d19b9 (
plain)
1 # Description: CorelDraw file format importer library for LibreOffice
2 # URL: https://wiki.documentfoundation.org/DLP/Libraries/libcdr
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: lcms2 librevenge icu
5
6 name=libcdr
7 version=0.1.6
8 release=1
9 source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz
10 libcdr-0.1.6-icu-68.patch)
11
12 build() {
13 cd $name-$version
14 [ $(pkginfo -i | awk '/^icu / {split($2,a,"."); print a[1]}') -ge 68 ] && \
15 patch -p1 -i $SRC/libcdr-0.1.6-icu-68.patch
16 ./configure --prefix=/usr \
17 --without-docs
18 make
19 make DESTDIR=$PKG install
20 }
|