wok-undigest view fluidsynth/receipt @ rev 168

Add: qTwitter v0.10.0 (Twitter/StatusNet client) and deps:
- Qt4-QCA v2.0.2 (Qt Crypto Arch)
- Qt4-QCA-OSSL v2.0.0-beta3 (SSL plug-in)
- QoAuth v1.0 (Qt oAuth) -- may need fixes on file locations
author Ben Arnold <ben@seawolfsanctuary.com>
date Sat Sep 04 21:46:16 2010 +0100 (2010-09-04)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fluidsynth"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
8 BUILD_DEPENDS=" jack-audio-connection-kit-dev ladspa-dev"
9 WEB_SITE="http://www.fluidsynth.org/"
10 DEPENDS="glib2 jack-audio-connection-kit ladspa"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://savannah.nongnu.org/download/fluid/$TARBALL"
13 TAGS="synthesizer audio multimedia"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr --enable-ladspa &&
20 make &&
21 make prefix=$PWD/_pkg/usr install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
31 }