2010-12-07 08:03:52 +08:00
|
|
|
pkgname=podofo
|
2018-04-29 09:09:04 +08:00
|
|
|
pkgver=0.9.5
|
2011-03-16 20:44:09 +08:00
|
|
|
pkgrel=1
|
2010-12-07 08:03:52 +08:00
|
|
|
pkgdesc="PoDoFo is a library to work with the PDF file format."
|
2014-12-11 05:10:33 +08:00
|
|
|
arch=('x86_64')
|
2010-12-07 08:03:52 +08:00
|
|
|
url="http://podofo.sourceforge.net"
|
|
|
|
license=('GPL')
|
2016-11-21 08:57:12 +08:00
|
|
|
depends=('gcc-libs' 'fontconfig' 'libpng' 'libtiff' 'zlib')
|
|
|
|
makedepends=('cmake' 'lua')
|
2014-12-11 05:10:33 +08:00
|
|
|
optdepends=('cppunit' 'lua')
|
2018-04-29 09:09:04 +08:00
|
|
|
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
|
|
md5sums=('4751a6cf41250bea550a73ff960b7228')
|
2010-12-07 08:03:52 +08:00
|
|
|
|
|
|
|
build() {
|
2011-03-16 20:44:09 +08:00
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
|
|
|
|
-DPODOFO_BUILD_SHARED=1 \
|
|
|
|
-DPODOFO_HAVE_JPEG_LIB=1 \
|
|
|
|
-DPODOFO_HAVE_PNG_LIB=1 \
|
|
|
|
-DPODOFO_HAVE_TIFF_LIB=1
|
|
|
|
make
|
|
|
|
}
|
2010-12-07 08:03:52 +08:00
|
|
|
|
2011-03-16 20:44:09 +08:00
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}/build
|
|
|
|
make DESTDIR=$pkgdir install
|
2010-12-07 08:03:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}/build
|
2014-12-11 05:10:33 +08:00
|
|
|
make DESTDIR=$pkgdir install
|
2010-12-07 08:03:52 +08:00
|
|
|
}
|