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

squirrelmail-shared_calendars: fix src path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 18 11:38:05 2009 +0000 (2009-02-18)
parents
children 84e6c4023ab1
line source
1 # SliTaz package receipt.
3 PACKAGE="jack-audio-connection-kit"
4 VERSION="0.109.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="low-latency audio server"
7 MAINTAINER="allan316@gmail.com"
8 BUILD_DEPENDS="alsa-lib-dev"
9 DEPENDS=""
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://jackaudio.org"
12 WGET_URL="http://jackaudio.org/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --with-default-tempdir=/dev/shm \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/jack
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/lib/jack/*.so* $fs/usr/lib/jack
31 strip -s $fs/usr/bin/*
32 }