wok view rubberband/receipt @ rev 24365

created recipe for rubberband-2.0.2
author Hans-G?nter Theisgen
date Fri Feb 04 17:35:01 2022 +0100 (2022-02-04)
parents
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="rubberband"
4 VERSION="2.0.2"
5 CATEGORY="development"
6 SHORT_DESC="Library for audio time-stretching and pitch-shifting."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.breakfastquay.com/rubberband/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://breakfastquay.com/files/releases/$TARBALL"
14 DEPENDS="fftw gcc83-lib-base ladspa libsamplerate libsndfile lv2 vamp-sdk"
15 BUILD_DEPENDS="fftw-dev gcc83 ladspa-dev libatomic libsamplerate-dev
16 libsndfile-dev lv2 meson vamp-sdk-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export CC=gcc-83
22 export CXX=g++-83
24 # mit meson und ninja
25 LDFLAGS="$LDFLAGS -latomic" \
26 meson _build \
27 --prefix=/usr \
28 --sysconfdir=/etc \
29 --mandir=/usr/share/man \
30 --localstatedir=/var \
31 --buildtype=plain &&
32 ninja -C _build &&
33 ninja -C _build install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr
41 cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/lib $fs/usr
43 cp -a $install/usr/share $fs/usr
44 }