wok view deadbeef/receipt @ rev 11820

Up: thunderbird to 10.0.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 25 14:16:39 2012 -0500 (2012-02-25)
parents 9ca8a145659d
children 03360f041b37
line source
1 # SliTaz package receipt.
3 PACKAGE="deadbeef"
4 VERSION="0.5.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Simple to use GTK+ audio player with systray support."
7 MAINTAINER="pankso@slitaz.org"
8 SUGGESTED="deadbeef-plugins"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://deadbeef.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="music audio player mp3 ogg"
14 DEPENDS="gtk+ alsa-lib libogg libvorbis libsamplerate libmad"
15 BUILD_DEPENDS="gtk+-dev alsa-lib-dev libogg-dev libvorbis-dev libmad-dev \
16 libsndfile-dev libsamplerate-dev flac-dev curl-dev libcdio-dev \
17 libcddb-dev intltool libsndfile libcurl"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/pixmaps
31 cp -a $install/usr/bin $fs/usr
32 for l in alsa ddb_gui_GTK2 hotkeys vorbis mpgmad
33 do
34 cp -a $install/usr/lib/$PACKAGE/$l.so* $fs/usr/lib/$PACKAGE
35 done
36 cp -a $install/usr/share/$PACKAGE $fs/usr/share
37 cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \
38 $fs/usr/share/pixmaps
39 }