wok annotate libdvdread/receipt @ rev 8302

Fix: check_module.sh (into linux stuff) modified to works with tazwok-experimental
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Feb 01 02:51:09 2011 +0100 (2011-02-01)
parents 6a9428a46323
children 277fa3378fa7
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="libdvdread"
erjo@621 4 VERSION="0.9.7"
erjo@621 5 CATEGORY="system-tools"
erjo@621 6 SHORT_DESC="Librairy for reading DVDs"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@621 8 DEPENDS=""
erjo@621 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@621 10 WEB_SITE="http://www.dtek.chalmers.se/groups/dvd/"
erjo@621 11 WGET_URL="http://www.dtek.chalmers.se/groups/dvd/dist/$TARBALL"
erjo@621 12
erjo@621 13 # Rules to configure and make the package.
erjo@621 14 compile_rules()
erjo@621 15 {
erjo@621 16 cd $src
erjo@621 17 ./configure --prefix=/usr $CONFIGURE_ARGS
erjo@621 18 make
erjo@621 19 make DESTDIR=$PWD/_pkg install
erjo@621 20 }
erjo@621 21
erjo@621 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 23 genpkg_rules()
erjo@621 24 {
erjo@621 25 mkdir -p $fs/usr/lib
erjo@621 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@621 27 }
erjo@621 28