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

updated frogatto and frogatto-data (1.1.1 -> 1.3.1)
author Hans-G?nter Theisgen
date Sat Jun 29 09:06:33 2019 +0100 (2019-06-29)
parents db0d5231e4d3
children 432dd31a79d5
line source
1 # SliTaz package receipt.
3 PACKAGE="jack-audio-connection-kit"
4 VERSION="0.125.0"
5 CATEGORY="multimedia"
6 TAGS="audio server"
7 SHORT_DESC="Low-latency audio server."
8 MAINTAINER="allan316@gmail.com"
9 LICENSE="GPL LGPL"
10 WEB_SITE="http://jackaudio.org"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://jackaudio.org/downloads/$TARBALL"
15 DEPENDS="alsa-lib ncurses readline libsndfile libogg libsamplerate"
16 BUILD_DEPENDS="alsa-lib-dev libsamplerate-dev db-dev util-linux-uuid-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install &&
26 install -Dm644 $src/jack/jslist.h $install/usr/include/jack/jslist.h
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/jack
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/jack/*.so* $fs/usr/lib/jack
37 }