# HG changeset patch # User Rohit Joshi # Date 1287537136 14400 # Node ID 167fbe7a66e404009a932b8dc0f8f03da048d3e4 # Parent cb643af8b54d53ce57a761f913f8dfd206988533 Add fluidsynth: mv from undigest diff -r cb643af8b54d -r 167fbe7a66e4 fluidsynth-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fluidsynth-dev/receipt Tue Oct 19 21:12:16 2010 -0400 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="fluidsynth-dev" +VERSION="1.1.1" +CATEGORY="development" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="fluidsynth devel files" +WEB_SITE="http://www.fluidsynth.org/" +WANTED="fluidsynth" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r cb643af8b54d -r 167fbe7a66e4 fluidsynth/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fluidsynth/receipt Tue Oct 19 21:12:16 2010 -0400 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="fluidsynth" +VERSION="1.1.1" +CATEGORY="multimedia" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." +BUILD_DEPENDS=" jack-audio-connection-kit-dev ladspa-dev" +WEB_SITE="http://www.fluidsynth.org/" +DEPENDS="glib2 jack-audio-connection-kit ladspa" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://savannah.nongnu.org/download/fluid/$TARBALL" +TAGS="synthesizer audio multimedia" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr --enable-ladspa && + make && + make prefix=$PWD/_pkg/usr install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ + +}