wok-next view qpdf/receipt @ rev 20636

Fix "can't execute '/usr/bin/update-mime-database': No such file or directory"
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 15:12:17 2018 +0300 (2018-04-27)
parents 9e5dca6702bf
children d08d2d235af0
line source
1 # SliTaz package receipt v2.
3 PACKAGE="qpdf"
4 VERSION="6.0.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="QPDF: A Content-Preserving PDF Transformation System"
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="Artistic-2.0"
9 WEB_SITE="http://qpdf.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="zlib-dev pcre-dev"
15 SPLIT="qpdf-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 qpdf)
29 copy @std
30 DEPENDS="pcre zlib"
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 }