wok view dvdauthor/receipt @ rev 13666

ccid: add --enable-twinserial
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 24 11:28:27 2012 +0100 (2012-11-24)
parents e3b85b1a6d75
children 380ffe05937a
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 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
9 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev \
10 libpng-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://dvdauthor.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
33 }