wok view aqualung/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 52375111086e
children 04d824c95283
line source
1 # SliTaz package receipt.
3 PACKAGE="aqualung"
4 VERSION="0.9beta10"
5 CATEGORY="multimedia"
6 SHORT_DESC="Aqualung audio player."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://aqualung.factorial.hu/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="music audio player mp3 ogg"
14 DEPENDS="gtk+ alsa-lib libogg libvorbis flac lame libsamplerate libsndfile \
15 libmodplug libcdio libmad bzlib"
16 BUILD_DEPENDS="gtk+-dev alsa-lib-dev libogg-dev libvorbis-dev flac-dev \
17 lame-dev libsamplerate-dev libmad-dev libsndfile-dev libxml2-dev bzip2-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --with-lavc=no \
25 --with-jack=no &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/pixmaps
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share/aqualung $fs/usr/share
35 # Remove doc
36 rm -rf $fs/usr/share/aqualung/doc
37 cd $fs/usr/share/pixmaps
38 ln -s ../aqualung/general.png aqualung.png
39 }