wok annotate dvdauthor/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 1f2d8dcf5b6c
children 4145e48d6b69
rev   line source
pankso@295 1 # SliTaz package receipt.
pankso@295 2
pankso@295 3 PACKAGE="dvdauthor"
slaxemulator@7821 4 VERSION="0.7.0"
pankso@295 5 CATEGORY="multimedia"
pankso@295 6 SHORT_DESC="A simple set of tools to help you author a DVD."
pankso@295 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@15000 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15000 10 WEB_SITE="http://dvdauthor.sourceforge.net/"
pascal@15000 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15000 12
pascal@2488 13 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
pascal@12901 14 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev \
pascal@12901 15 libpng-dev"
pankso@295 16
pankso@295 17 # Rules to configure and make the package.
pankso@295 18 compile_rules()
pankso@295 19 {
pankso@295 20 cd $src
pankso@295 21 ./configure \
pankso@295 22 --prefix=/usr \
pankso@295 23 --mandir=/usr/share/man \
pascal@2488 24 $CONFIGURE_ARGS &&
pascal@2488 25 make &&
pascal@15000 26 make DESTDIR=$DESTDIR install
pankso@295 27 }
pankso@295 28
pankso@295 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 30 genpkg_rules()
pankso@295 31 {
pankso@295 32 mkdir -p $fs/usr/share
pascal@15000 33 cp -a $install/usr/bin $fs/usr
pascal@15000 34 cp -a $install/usr/share/$PACKAGE $fs/usr/share
pankso@295 35 }
pankso@295 36