wok view dssi/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents
children 640a2eba2511
line source
1 # SliTaz package receipt.
3 PACKAGE="dssi"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="An audio plugin API for soft synths and effects."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://dssi.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gcc-lib-base"
14 BUILD_DEPENDS="pkg-config alsa-lib-dev ladspa-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --localstatedir=/var \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/dssi
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/dssi $fs/usr/lib
33 rm -f $fs/usr/lib/dssi/*a
34 }