wok-next annotate fluidsynth/receipt @ rev 20095

Update/add packages needed for building MATE desktop:
Add: gnome-keyring3, gtkmm3, libappindicator-gtk[23], libfakekey, libgnome-keyring3, libindicator-gtk[23], libpeas.
Update: atkmm, cairomm, gcr, glibmm, gssdp, gupnp, icon-naming-utils, libcap-ng, libspectre, libwnck3, libxklavier, pangomm, perl-xml-sax.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Oct 28 16:45:22 2017 +0300 (2017-10-28)
parents a00bf44ed23d
children 52b498d67ad8
rev   line source
jozee@6827 1 # SliTaz package receipt.
jozee@6827 2
jozee@6827 3 PACKAGE="fluidsynth"
slaxemulator@6937 4 VERSION="1.1.3"
jozee@6827 5 CATEGORY="multimedia"
jozee@6827 6 MAINTAINER="jozee@slitaz.org"
pascal@15004 7 LICENSE="LGPL2"
jozee@6827 8 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
jozee@6827 9 WEB_SITE="http://www.fluidsynth.org/"
al@19829 10 DEPENDS="glib jack ladspa"
al@19829 11 BUILD_DEPENDS="glib-dev jack-dev ladspa-dev pkg-config"
jozee@6827 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6938 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@6827 14 TAGS="synthesizer audio multimedia"
jozee@6827 15
jozee@6827 16 # Rules to configure and make the package.
jozee@6827 17
jozee@6827 18 compile_rules() {
jozee@6827 19 cd $src
gokhlayeh@11573 20 ./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS &&
jozee@6827 21 make &&
slaxemulator@8398 22 make DESTDIR=$DESTDIR install
jozee@6827 23 }
jozee@6827 24
jozee@6827 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6827 26 genpkg_rules()
jozee@6827 27 {
jozee@6827 28 mkdir -p $fs/usr/lib
pascal@15004 29 cp -a $install/usr/bin $fs/usr
pascal@15004 30 cp -a $install/usr/lib/*so* $fs/usr/lib/
jozee@6827 31
jozee@6827 32 }