wok annotate dvdauthor/receipt @ rev 23741

updated workerfm again (2.19.6 -> 4.1.0)
author Hans-G?nter Theisgen
date Fri May 01 11:25:13 2020 +0100 (2020-05-01)
parents 4145e48d6b69
children 640a2eba2511
rev   line source
pankso@295 1 # SliTaz package receipt.
pankso@295 2
pankso@295 3 PACKAGE="dvdauthor"
Hans-G?nter@20857 4 VERSION="0.7.2"
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"
Hans-G?nter@20857 9 WEB_SITE="http://dvdauthor.sourceforge.net/"
Hans-G?nter@20857 10
pascal@15000 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15000 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15000 13
pascal@21123 14 DEPENDS="libpng tiff jpeg libxml2 fribidi libdvdread"
pascal@21123 15 BUILD_DEPENDS="libpng-dev tiff-dev jpeg-dev libxml2-dev libdvdread-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 ./configure \
pankso@295 21 --prefix=/usr \
pankso@295 22 --mandir=/usr/share/man \
pascal@2488 23 $CONFIGURE_ARGS &&
Hans-G?nter@20857 24 make -j 1 &&
pascal@15000 25 make DESTDIR=$DESTDIR install
pankso@295 26 }
pankso@295 27
pankso@295 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 29 genpkg_rules()
pankso@295 30 {
pankso@295 31 mkdir -p $fs/usr/share
pascal@15000 32 cp -a $install/usr/bin $fs/usr
pascal@15000 33 cp -a $install/usr/share/$PACKAGE $fs/usr/share
pankso@295 34 }