wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="dvdauthor"
4 VERSION="0.7.0"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://dvdauthor.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
14 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev \
15 libpng-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
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 }