wok view rubyripper/receipt @ rev 15820

Up: bazaar to 2.6.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 07:06:04 2014 +0000 (2014-01-24)
parents 7a526dcd4932
children f9c110fcc112
line source
1 # SliTaz package receipt.
3 PACKAGE="rubyripper"
4 VERSION="0.6.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="A secure audio disc ripper"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://code.google.com/p/rubyripper"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://rubyripper.googlecode.com/files/$TARBALL"
12 TAGS="audio CD ripper"
14 SUGGESTED="ruby-gtk2 lame orgenc"
15 DEPENDS="cd-discid cdparanoia-III flac normalize ruby"
16 BUILD_DEPENDS="cd-discid cdparanoia-III lame normalize ruby vorbis-tools"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --enable-gtk2 \
24 --enable-cli \
25 --enable-lang-all \
26 && make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib $fs/usr
35 # launcher
36 cp -a $stuff/$PACKAGE $fs/usr/bin
37 }