wok annotate libcdio/receipt @ rev 5144
smbclient: lib files move to samba-common + Fix DEPENDS
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue Mar 23 23:24:39 2010 +0100 (2010-03-23) |
parents | 17c3d9250fd0 |
children | 964f5d384827 |
rev | line source |
---|---|
jozee@2663 | 1 # SliTaz package receipt. |
jozee@2663 | 2 |
jozee@2663 | 3 PACKAGE="libcdio" |
jozee@2663 | 4 VERSION="0.80" |
jozee@2663 | 5 CATEGORY="multimedia" |
jozee@2663 | 6 SHORT_DESC="GNU Compact Disc Input and Control Library" |
jozee@2663 | 7 MAINTAINER="rj.rohit@gmail.com" |
pascal@5003 | 8 DEPENDS="libcddb ncurses gcc-lib-base" |
jozee@2663 | 9 BUILD_DEPENDS="libcddb libcddb-dev ncurses-dev gcc-lib-base" |
jozee@2663 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
jozee@2663 | 11 WEB_SITE="http://www.gnu.org/software/libcdio/" |
jozee@2663 | 12 WGET_URL="http://ftp.gnu.org/gnu/libcdio/$TARBALL" |
jozee@2663 | 13 |
jozee@2663 | 14 # Rules to configure and make the package. |
jozee@2663 | 15 compile_rules() |
jozee@2663 | 16 { |
jozee@2663 | 17 cd $src |
pascal@5003 | 18 ./configure --prefix=/usr --disable-vcd-info && |
pascal@5003 | 19 make && |
jozee@2663 | 20 make DESTDIR=$PWD/_pkg install |
jozee@2663 | 21 } |
jozee@2663 | 22 |
jozee@2663 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@2663 | 24 genpkg_rules() |
jozee@2663 | 25 { |
jozee@2663 | 26 mkdir -p $fs/usr/lib |
jozee@2663 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
jozee@2663 | 28 |
jozee@2663 | 29 } |