wok view deadbeef/receipt @ rev 10017

thunar-archive-plugin: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 12:28:58 2011 +0200 (2011-05-19)
parents b5a65b0eef90
children 9ca8a145659d
line source
1 # SliTaz package receipt.
3 PACKAGE="deadbeef"
4 VERSION="0.4.4"
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 ffmpeg-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 && make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/pixmaps
30 cp -a $_pkg/usr/bin $fs/usr
31 for l in alsa gtkui hotkeys vorbis mpgmad
32 do
33 cp -a $_pkg/usr/lib/$PACKAGE/$l.so* $fs/usr/lib/$PACKAGE
34 done
35 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
36 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/*.png \
37 $fs/usr/share/pixmaps
38 }