wok view libcdio/receipt @ rev 13077

Up: fuse to 2.8.7.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jun 25 08:53:28 2012 +0000 (2012-06-25)
parents cbaef0cbe623
children 4904e3d374a9
line source
1 # SliTaz package receipt.
3 PACKAGE="libcdio"
4 VERSION="0.83"
5 CATEGORY="multimedia"
6 SHORT_DESC="GNU Compact Disc Input and Control Library"
7 MAINTAINER="rj.rohit@gmail.com"
8 DEPENDS="libcddb ncurses gcc-lib-base"
9 BUILD_DEPENDS="libcddb libcddb-dev 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 }