wok-next annotate dssi/receipt @ rev 20075
tiny edit
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Wed Oct 25 08:30:39 2017 +0200 (2017-10-25) |
parents | |
children | a7b1395df64a |
rev | line source |
---|---|
pascal@16209 | 1 # SliTaz package receipt. |
pascal@16209 | 2 |
pascal@16209 | 3 PACKAGE="dssi" |
pascal@16209 | 4 VERSION="1.1.1" |
pascal@16209 | 5 CATEGORY="multimedia" |
pascal@16209 | 6 SHORT_DESC="An audio plugin API for soft synths and effects." |
pascal@16209 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16209 | 8 LICENSE="LGPL2.1" |
pascal@16209 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@16209 | 10 WEB_SITE="http://dssi.sourceforge.net/" |
pascal@16209 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@16209 | 12 |
pascal@16209 | 13 DEPENDS="gcc-lib-base" |
pascal@16209 | 14 BUILD_DEPENDS="pkg-config alsa-lib-dev ladspa-dev" |
pascal@16209 | 15 |
pascal@16209 | 16 # Rules to configure and make the package. |
pascal@16209 | 17 compile_rules() |
pascal@16209 | 18 { |
pascal@16209 | 19 ./configure --prefix=/usr \ |
pascal@16209 | 20 --localstatedir=/var \ |
pascal@16209 | 21 --mandir=/usr/share/man \ |
pascal@16209 | 22 $CONFIGURE_ARGS && |
pascal@16209 | 23 make && |
pascal@16209 | 24 make DESTDIR=$DESTDIR install |
pascal@16209 | 25 } |
pascal@16209 | 26 |
pascal@16209 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16209 | 28 genpkg_rules() |
pascal@16209 | 29 { |
pascal@16209 | 30 mkdir -p $fs/usr/lib/dssi |
pascal@16209 | 31 cp -a $install/usr/bin $fs/usr |
pascal@16209 | 32 cp -a $install/usr/lib/dssi $fs/usr/lib |
pascal@16209 | 33 rm -f $fs/usr/lib/dssi/*a |
pascal@16209 | 34 } |