wok-6.x annotate lsdvd/receipt @ rev 13695
separate .conf file
author | xfred222 |
---|---|
date | Thu Dec 13 20:04:39 2012 -0500 (2012-12-13) |
parents | 0ee75cad7429 |
children | 2a5cc8208d36 |
rev | line source |
---|---|
erjo@621 | 1 # SliTaz package receipt. |
erjo@621 | 2 |
erjo@621 | 3 PACKAGE="lsdvd" |
erjo@621 | 4 VERSION="0.16" |
erjo@621 | 5 CATEGORY="system-tools" |
erjo@621 | 6 SHORT_DESC="A console application that displays the content of a DVD." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@621 | 8 DEPENDS="libdvdread" |
erjo@621 | 9 BUILD_DEPENDS="libdvdread-dev" |
erjo@621 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@621 | 11 WEB_SITE="http://untrepid.com/acidrip/lsdvd.html" |
slaxemulator@10137 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
erjo@621 | 13 |
erjo@621 | 14 # Rules to configure and make the package. |
erjo@621 | 15 compile_rules() |
erjo@621 | 16 { |
erjo@621 | 17 cd $src |
pascal@1553 | 18 [ -f done.lsdvd-0.16-configure.patch ] || |
slaxemulator@9692 | 19 patch -p1 -i $stuff/lsdvd-0.16-configure.patch |
pascal@1553 | 20 touch done.lsdvd-0.16-configure.patch |
slaxemulator@10137 | 21 ./configure $CONFIGURE_ARGS && |
slaxemulator@10137 | 22 make && make install |
erjo@621 | 23 } |
erjo@621 | 24 |
erjo@621 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@621 | 26 genpkg_rules() |
erjo@621 | 27 { |
erjo@621 | 28 mkdir -p $fs/usr |
erjo@621 | 29 cp -a $_pkg/usr/bin $fs/usr |
erjo@621 | 30 } |
erjo@621 | 31 |