wok view dvdauthor/receipt @ rev 21117

Up reiserfsprogs (3.6.27) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 19 19:43:29 2019 +0100 (2019-03-19)
parents 380ffe05937a
children b3295b68d65e
line source
1 # SliTaz package receipt.
3 PACKAGE="dvdauthor"
4 VERSION="0.7.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="A simple set of tools to help you author a DVD."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://dvdauthor.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
15 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev \
16 libpng-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share/$PACKAGE $fs/usr/share
35 }