wok-next view dvdauthor/receipt @ rev 20406

Continue: json-c, json-glib, keyutils, libarchive, libassuan, libatasmart, libatomic_ops, libblockdev, libbytesize, libcroco, libdaemon, libesmtp, libffi, libgcrypt, libgpg-error, libgsf, libgudev, libgusb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 08 02:55:48 2017 +0200 (2017-12-08)
parents 380ffe05937a
children dd145c435e4b
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://dvdauthor.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="imagemagick6 tiff jpeg libxml2 fribidi libdvdread"
14 BUILD_DEPENDS="imagemagick6-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 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share/$PACKAGE $fs/usr/share
34 }