wok view asunder/receipt @ rev 9641

Fixed rhino, ecj, and xalan-xerces-j depends. Putting java-jre for depends was a bad idea since these packages are build depends for icedtea6-jdk. java-jre is a wanted package for icetea6-jdk. This was causing a depend loop.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 27 16:22:35 2011 +0000 (2011-04-27)
parents 39a4b4e8076b
children ec0dd4311d89
line source
1 # SliTaz package receipt.
3 PACKAGE="asunder"
4 VERSION="2.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK light CD ripper."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libcddb cdparanoia-III xorg-libXdamage"
9 BUILD_DEPENDS="pkg-config gtk+-dev alsa-lib-dev libcddb-dev libcddb glib-dev"
10 SUGGESTED="lame flac"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://littlesvr.ca/asunder/"
13 WGET_URL="http://littlesvr.ca/asunder/releases/$TARBALL"
14 TAGS="audio rip"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }