wok annotate djvulibre/receipt @ rev 15000

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