wok view cdparanoia-III/receipt @ rev 6375

Up: scons to 2.0.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Sep 21 12:08:37 2010 +0000 (2010-09-21)
parents 582a423f48ae
children 3a9b5ecc8d59
line source
1 # SliTaz package receipt.
3 PACKAGE="cdparanoia-III"
4 VERSION="10.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="CMDline CD ripper used by Asunder."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.src.tgz"
9 WEB_SITE="http://www.xiph.org/paranoia/"
10 WGET_URL="http://downloads.xiph.org/releases/cdparanoia/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 grep -qs 'define u8' interface/low_interface.h ||
17 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \
18 interface/low_interface.h
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/usr/lib
30 cp -a $src/cdparanoia $fs/usr/bin
31 cp -a $src/interface/libcdda_interface.so* $fs/usr/lib
32 cp -a $src/paranoia/libcdda_paranoia.so* $fs/usr/lib
33 }