wok view lsdvd/receipt @ rev 703

x11vnc: --root support in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 02 08:25:48 2008 +0000 (2008-05-02)
parents
children a075ff895254
line source
1 # SliTaz package receipt.
3 PACKAGE="lsdvd"
4 VERSION="0.16"
5 CATEGORY="system-tools"
6 SHORT_DESC="A console application that displays the content of a DVD."
7 MAINTAINER="Erjo <erjo@slitaz.org>"
8 DEPENDS="libdvdread"
9 BUILD_DEPENDS="libdvdread-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://untrepid.com/acidrip/lsdvd.html"
12 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/lsdvd/$TARBALL
13 http://puzzle.dl.sourceforge.net/sourceforge/lsdvd/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -p1 -i ../stuff/lsdvd-0.16-configure.patch
20 ./configure --prefix=/usr $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 strip -s $fs/usr/bin/*
31 }