wok view jack-audio-connection-kit/receipt @ rev 13841

get-LibreOffice: busybox does not support ? wildcard anymore. bug?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 08 10:29:56 2013 +0100 (2013-01-08)
parents 02bbaa9d12ba
children bc60d0ca59b2
line source
1 # SliTaz package receipt.
3 PACKAGE="jack-audio-connection-kit"
4 VERSION="0.121.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="low-latency audio server"
7 MAINTAINER="allan316@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://jackaudio.org"
10 WGET_URL="http://jackaudio.org/downloads/$TARBALL"
11 TAGS="audio server"
13 DEPENDS="alsa-lib ncurses readline libsndfile libogg"
14 BUILD_DEPENDS="alsa-lib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/jack
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/lib/jack/*.so* $fs/usr/lib/jack
33 }