wok-6.x view lsdvd/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 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 }