wok view fsthost/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents ad0bc3efbf37
children 69e1e705f038
line source
1 # SliTaz package receipt.
3 PACKAGE="fsthost"
4 VERSION="1.6.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="VST host for Jack with GTK interface."
7 MAINTAINER="xj@wp.pl"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/fsthost"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/project/$PACKAGE/$TARBALL"
14 DEPENDS="gtk+3 jack-audio-connection-kit libxml2 wine"
15 BUILD_DEPENDS="gtk+3-dev jack-audio-connection-kit-dev libxml2-dev
16 wine-rt-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://sourceforge.net/projects/fsthost/files/ 2>/dev/null | \
22 sed '/scope="row/!d;s|.*/fsthost-||;s|.tar.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 make install \
29 LIB_INST_PATH=/usr/lib \
30 DESTDIR=$install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }