wok view aqualung/receipt @ rev 24321

updated aqualung (1.0 -> 1.1)
author Hans-G?nter Theisgen
date Wed Jan 26 10:22:26 2022 +0100 (2022-01-26)
parents 2ec1a5cffdd2
children 964bcabe7e8c
line source
1 # SliTaz package receipt.
3 PACKAGE="aqualung"
4 VERSION="1.1"
5 CATEGORY="multimedia"
6 TAGS="music audio player mp3 ogg"
7 SHORT_DESC="Aqualung audio player."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://aqualung.jeremyevans.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/jeremyevans/$PACKAGE/archive/refs/tags/$VERSION.tar.gz"
15 SUGGESTED="aqualung-lang"
16 DEPENDS="alsa-lib bzlib flac gtk+ lame libcdio libmad libmodplug libogg
17 libsamplerate libsndfile libvorbis"
18 BUILD_DEPENDS="alsa-lib-dev bzip2-dev flac-dev gtk+-dev lame-dev libmad-dev
19 libogg-dev libsamplerate-dev libsndfile-dev libvorbis-dev libxml2-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 # Trying to create ~/.config when ~/.config already exists
25 # aborts program.
26 # In SliTaz ~/.config should already exist.
27 patch --strip=0 --input=$stuff/patches/core.c-1.1
29 ./configure \
30 --with-lavc=no \
31 --with-jack=no &&
32 make &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/pixmaps
41 cook_copy_folders bin
42 cook_copy_folders aqualung
44 # Remove documentation
45 rm -rf $fs/usr/share/doc
47 cd $fs/usr/share/pixmaps
48 ln -s ../aqualung/general.png aqualung.png
49 }