wok-stable annotate dvdauthor/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents 9f60adb04c9b
children 100c06a49915
rev   line source
pankso@295 1 # SliTaz package receipt.
pankso@295 2
pankso@295 3 PACKAGE="dvdauthor"
pankso@295 4 VERSION="0.6.14"
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@2488 8 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
erjo@1353 9 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev"
pankso@295 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@295 11 WEB_SITE="http://dvdauthor.sourceforge.net/"
pankso@295 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@295 13
pankso@295 14 # Rules to configure and make the package.
pankso@295 15 compile_rules()
pankso@295 16 {
pankso@295 17 cd $src
pankso@295 18 ./configure \
pankso@295 19 --prefix=/usr \
pankso@295 20 --mandir=/usr/share/man \
pascal@2488 21 $CONFIGURE_ARGS &&
pascal@2488 22 make &&
pankso@295 23 make DESTDIR=$PWD/_pkg install
pankso@295 24 }
pankso@295 25
pankso@295 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 27 genpkg_rules()
pankso@295 28 {
pankso@295 29 mkdir -p $fs/usr/share
pankso@295 30 cp -a $_pkg/usr/bin $fs/usr
pankso@295 31 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
pankso@295 32 }
pankso@295 33