wok view rubyripper/receipt @ rev 17713

Up libmatemixer-dev wrong dir
author Yuri Pourre <yuripourre@gmail.com>
date Wed Mar 04 00:19:44 2015 -0300 (2015-03-04)
parents f9c110fcc112
children 6135577f4d08
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 vorbis-tools"
15 DEPENDS="cd-discid cdparanoia-III flac normalize ruby"
16 BUILD_DEPENDS="cd-discid cdparanoia-III lame normalize ruby-dev 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 }