wok annotate ggseq/receipt @ rev 17705

Up firefox-official (36.0)
author Richard Dunbar <mojo@slitaz.org>
date Mon Mar 02 06:32:17 2015 -0500 (2015-03-02)
parents b165a9b3b8c3
children affba9aecc73
rev   line source
pascal@11222 1 # SliTaz package receipt.
pascal@11222 2
pascal@11222 3 PACKAGE="ggseq"
pascal@11222 4 VERSION="0.3.1"
pascal@11222 5 CATEGORY="multimedia"
pascal@11222 6 SHORT_DESC="Gungirl Sequencer is an easy to use Audiosequencer."
pascal@11222 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@11222 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11222 10 WEB_SITE="http://ggseq.sourceforge.net/"
pascal@11222 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11222 12
pascal@15000 13 DEPENDS="wxWidgets libsndfile libsamplerate"
pascal@15000 14 BUILD_DEPENDS="$DEPENDS wxWidgets-dev libsndfile-dev libsamplerate-dev"
pascal@15000 15
pascal@11222 16 # Rules to configure and make the package.
pascal@11222 17 compile_rules()
pascal@11222 18 {
pascal@11222 19 cd $src
pascal@11222 20 sed -i 's/SoundTouch::getVersionId/getVersionId/' src/SoundTouch/SoundTouch.h
pascal@11222 21 ./configure \
pascal@11222 22 --prefix=/usr \
pascal@11222 23 --infodir=/usr/share/info \
pascal@11222 24 --mandir=/usr/share/man \
pascal@11222 25 $CONFIGURE_ARGS &&
pascal@15000 26 make && make DESTDIR=$DESTDIR install
pascal@11222 27 }
pascal@11222 28
pascal@11222 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11222 30 genpkg_rules()
pascal@11222 31 {
pascal@11222 32 mkdir -p $fs/usr
pascal@15000 33 cp -a $install/usr/bin $fs/usr
pascal@11222 34 }
pascal@11222 35