wok view TiMidity++/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents fe448de6c617
children 9e01bc6321ea
line source
1 # SliTaz package receipt.
3 PACKAGE="TiMidity++"
4 VERSION="2.14.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="TiMidity++ is an open source MIDI to WAVE converter and player."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://timidity.sourceforge.net/"
11 WGET_URL="http://sourceforge.net/projects/timidity/files/latest/download"
13 DEPENDS="alsa-lib portaudio jack-audio-connection-kit libao libvorbis libogg flac gtk+ xorg-libXaw"
14 BUILD_DEPENDS="alsa-lib-dev portaudio-dev jack-audio-connection-kit-dev libao-dev libvorbis-dev libogg-dev
15 flac-dev gtk+-dev xorg-libXaw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --enable-audio=alsa,portaudio,jack,ao,vorbis,flac \
23 --enable-interface=gtk,xaw \
24 --enable-alsaseq
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }
36 post_install()
37 {
38 # create config file
39 mkdir $1/usr/share/timidity
40 touch $1/usr/share/timidity/timidity.cfg
41 }
43 post_remove()
44 {
45 rm -rf $1/usr/share/timidity
46 }