wok view libcdio/receipt @ rev 11700

Up: slitaz-doc (4.2.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 19 12:09:24 2012 +0100 (2012-02-19)
parents 7f37d33e799b
children cc496c8ab07e
line source
1 # SliTaz package receipt.
3 PACKAGE="libcdio"
4 VERSION="0.82"
5 CATEGORY="multimedia"
6 SHORT_DESC="GNU Compact Disc Input and Control Library"
7 MAINTAINER="rj.rohit@gmail.com"
8 DEPENDS="ncurses gcc-lib-base"
9 BUILD_DEPENDS="ncurses-dev gcc-lib-base"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/libcdio/"
12 WGET_URL="http://ftp.gnu.org/gnu/libcdio/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 grep -qs 'define u8' lib/driver/gnu_linux.c ||
19 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \
20 lib/driver/gnu_linux.c
21 ./configure --prefix=/usr --disable-vcd-info \
22 $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/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }