wok view lsdvd/receipt @ rev 8121

Fixed pcsxr-svn to use lzma-alone instead of lzma wrapper script. Turns out the lzma wrapper script for xz is incompatible with lzma-alone compression. Also lzma-alone compress better.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 24 00:57:47 2011 +0000 (2011-01-24)
parents a075ff895254
children 02bbaa9d12ba
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@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 [ -f done.lsdvd-0.16-configure.patch ] ||
20 patch -p1 -i ../stuff/lsdvd-0.16-configure.patch
21 touch done.lsdvd-0.16-configure.patch
22 ./configure --prefix=/usr $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
31 cp -a $_pkg/usr/bin $fs/usr
32 strip -s $fs/usr/bin/*
33 }