wok view libcdio/receipt @ rev 4630

linux-source: aufs2 fix + install speedup (thanks erjo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 22 10:10:01 2009 +0100 (2009-12-22)
parents
children 8752c40cc534
line source
1 # SliTaz package receipt.
3 PACKAGE="libcdio"
4 VERSION="0.80"
5 CATEGORY="multimedia"
6 SHORT_DESC="GNU Compact Disc Input and Control Library"
7 MAINTAINER="rj.rohit@gmail.com"
8 DEPENDS="libcddb ncurses"
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 ./configure --prefix=/usr --disable-vcd-info
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }