wok annotate ardour/receipt @ rev 24095

Add jpegoptim
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 01 14:04:21 2021 +0000 (2021-09-01)
parents dc0f7fd1ff7d
children 9bbac86a37f7
rev   line source
jozee@6828 1 # SliTaz package receipt.
jozee@6828 2
jozee@6828 3 PACKAGE="ardour"
pascal@13404 4 VERSION="2.8.14"
jozee@6828 5 CATEGORY="multimedia"
jozee@6828 6 MAINTAINER="jozee@slitaz.org"
pascal@15000 7 LICENSE="GPL2"
jozee@6828 8 SHORT_DESC="A multichannel hard disk recorder and digital audio workstation"
jozee@6828 9 WEB_SITE="http://ardour.org"
pascal@24061 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@24061 11 WGET_URL="https://github.com/Ardour/ardour/archive/refs/tags/$VERSION.tar.gz"
jozee@6828 12 TAGS="audio recorder mixer"
jozee@6828 13
al@19267 14 DEPENDS="liblrdf ladspa liblo libgnomecanvas libusb-compat aubio libsndfile \
slaxemulator@13106 15 libsamplerate raptor fftw libxslt libgnomecanvasmm soundtouch"
slaxemulator@13106 16 BUILD_DEPENDS="scons libboost-dev libboost-thread-dev libboost-math-dev \
slaxemulator@13106 17 jack-audio-connection-kit-dev alsa-lib-dev liblo-dev aubio-dev libxslt-dev \
slaxemulator@13106 18 libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev \
slaxemulator@13106 19 libsamplerate-dev curl-dev fftw-dev soundtouch-dev raptor-dev \
pascal@13403 20 libgnomecanvasmm-dev libgnomecanvas-dev pkg-config liblrdf-dev gtkmm-dev \
pascal@13403 21 libboost-system-dev"
erjo@9906 22
pascal@24061 23 current_version()
pascal@24061 24 {
pascal@24061 25 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24061 26 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24061 27 }
pascal@24061 28
jozee@6828 29 # Rules to configure and make the package.
slaxemulator@13106 30 compile_rules()
slaxemulator@13106 31 {
pascal@24066 32 [ -s libs/ardour/svn_revision.cc ] ||
pascal@24066 33 cat > libs/ardour/svn_revision.cc <<EOT
pascal@24066 34 #include "ardour/svn_revision.h"
pascal@24066 35 namespace ARDOUR {
pascal@24066 36 extern const char* svn_revision = "$VERSION";
pascal@24066 37 }
pascal@24066 38 EOT
pascal@21792 39 # glibmm >=2.31 fix
pascal@21792 40 grep -lr signal_timeout * | xargs sed -i '1i#include <glibmm/main.h>'
pascal@21792 41
pascal@20249 42 sed -i 's/uname -m/echo i686/' tools/config.guess
al@19267 43 sed -i '/-O3/d' SConstruct
al@19267 44 mkdir -p $DESTDIR
al@19267 45
al@19267 46 CFLAGS="$CFLAGS -Wl,--copy-dt-needed-entries -lboost_system"
al@19267 47 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
slaxemulator@13106 48 PREFIX=/usr \
jozee@6828 49 NLS=1 \
jozee@6828 50 FREEDESKTOP=0 \
slaxemulator@13106 51 SYSLIBS=1 \
jozee@6828 52 VST=0 \
jozee@6828 53 WIIMOTE=0 \
jozee@6828 54 LV2=0 \
jozee@6828 55 FREESOUND=1 \
jozee@6828 56 LIBLO=1 \
jozee@6828 57 AUBIO=1 \
jozee@6828 58 TRANZPORT=1 \
al@19267 59 DIST_LIBDIR=lib
al@19267 60
al@19267 61 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
slaxemulator@13106 62 PREFIX=/usr \
jozee@6828 63 NLS=1 \
jozee@6828 64 FREEDESKTOP=0 \
slaxemulator@13106 65 SYSLIBS=1 \
jozee@6828 66 VST=0 \
jozee@6828 67 WIIMOTE=0 \
jozee@6828 68 LV2=0 \
jozee@6828 69 FREESOUND=1 \
jozee@6828 70 LIBLO=1 \
jozee@6828 71 AUBIO=1 \
jozee@6828 72 TRANZPORT=1 \
jozee@6828 73 DIST_LIBDIR=lib \
al@19267 74 DESTDIR=$DESTDIR install
jozee@6828 75
al@19275 76 cook_pick_manpages $src/ardour.1
al@19267 77 for i in es fr ru; do
al@19267 78 mkdir -p $install/usr/share/man/$i/man1
al@19269 79 cp -a $src/ardour.1.$i $install/usr/share/man/$i/man1/ardour.1
al@19267 80 done
jozee@6828 81 }
jozee@6828 82
jozee@6828 83 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6828 84 genpkg_rules()
jozee@6828 85 {
jozee@6828 86 mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
pascal@15000 87 cp -a $install/usr/bin $fs/usr
pascal@15000 88 cp -a $install/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
pascal@15000 89 cp -a $install/usr/share/ardour2 $fs/usr/share
jozee@6828 90 }