wok-undigest view audacious/receipt @ rev 1230

python3: sqlite3-dev replaced by sqlite-dev
author Hans-G?nter Theisgen
date Wed Sep 09 14:09:02 2020 +0100 (2020-09-09)
parents 16e82a4c23da
children
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious"
4 VERSION="3.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Audacious is a versatile and handy multi platform media player"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://audacious-media-player.org/"
11 WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL"
12 TAGS="music audio player mp3 ogg m4a"
14 DEPENDS="gtk+ libguess audacious-plugins"
15 BUILD_DEPENDS="gtk+-dev libguess-dev coreutils-file-attributes"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 TPUT=/bin/true ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 --with-buildstamp="SliTaz" \
25 $CONFIGURE_ARGS &&
26 make build_env=host &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share $fs/usr/lib $fs/usr/bin
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib/
36 cp -a $install/usr/share/$PACKAGE $fs/usr/share
37 cp -a $install/usr/share/icons $fs/usr/share
38 }