wok view rubyripper/receipt @ rev 14895

Add gvpe
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 26 12:36:51 2013 +0000 (2013-07-26)
parents 8ed3888d6736
children 23c3aed67cd9
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 WEB_SITE="http://code.google.com/p/rubyripper"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="http://rubyripper.googlecode.com/files/$TARBALL"
11 TAGS="audio CD ripper"
13 SUGGESTED="ruby-gtk2 lame orgenc"
14 DEPENDS="cd-discid cdparanoia-III flac normalize ruby"
15 BUILD_DEPENDS="cd-discid cdparanoia-III lame normalize ruby vorbis-tools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --enable-gtk2 \
23 --enable-cli \
24 --enable-lang-all \
25 && make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 # launcher
35 cp -a $stuff/$PACKAGE $fs/usr/bin
36 }