wok view qtractor/receipt @ rev 25469

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 07 09:15:33 2022 +0000 (19 months ago)
parents e919c5a2742d
children 29df00e1e19d
line source
1 # SliTaz package receipt.
3 PACKAGE="qtractor"
4 VERSION="0.5.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Audio/MIDI multi-track sequencer application."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://qtractor.sourceforge.net/qtractor-index.html"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="jack-audio-connection-kit alsa-lib libsndfile ladspa \
14 libvorbis libmad libsamplerate liblo libQtGui libQtXml libQtCore"
15 BUILD_DEPENDS="qmake Qt4-dev jack-audio-connection-kit-dev alsa-lib-dev \
16 libsndfile-dev ladspa-dev libvorbis-dev libmad-dev libsamplerate-dev \
17 liblo-dev lilv lv2 "
19 #extras:
20 # librubberband : http://breakfastquay.com/rubberband/
21 # dssi : http://dssi.sourceforge.net/
22 # vst : http://www.steinberg.net/
24 # What is the latest version available today?
25 current_version()
26 {
27 wget -O - https://sourceforge.net/projects/qtractor/files/qtractor/ 2>/dev/null | \
28 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
29 sed '/scope="row/!d;s|.*/qtractor/||;s|/.*||;q'
30 }
32 # Rules to configure and make the package.
33 compile_rules()
34 {
35 cd $src
36 ./configure \
37 --prefix=/usr \
38 $CONFIGURE_ARGS &&
39 make && make DESTDIR=$DESTDIR install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cp -a $install/* $fs
46 }