wok view djvulibre/receipt @ rev 15605

obfsproxy: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 06 14:33:33 2013 +0000 (2013-12-06)
parents 159a8b382826
children d6b99c62ef00
line source
1 # SliTaz package receipt.
3 PACKAGE="djvulibre"
4 VERSION="3.5.25.3"
5 CATEGORY="office"
6 SHORT_DESC="A web-centric format and software platform for distributing documents and images."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://djvu.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/djvu/$TARBALL"
13 DEPENDS="gcc-lib-base tiff jpeg"
14 BUILD_DEPENDS="tiff-dev jpeg-dev xdg-utils bash librsvg-apps"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib $fs/usr/share
30 cp -a $install/usr/lib/*so* $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/djvu $fs/usr/share
33 }