wok-next annotate rubberband/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 7506b35e1c6f
children
rev   line source
al@20470 1 # SliTaz package receipt v2.
al@20470 2
al@20470 3 PACKAGE="rubberband"
al@20470 4 VERSION="1.8.1"
al@20470 5 CATEGORY="multimedia"
al@20470 6 SHORT_DESC="Time-stretching and pitch-shifting audio library and utility"
al@20470 7 MAINTAINER="al.bobylev@gmail.com"
al@20470 8 LICENSE="GPL"
al@20909 9 WEB_SITE="https://www.breakfastquay.com/rubberband/"
al@20470 10
al@20470 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20470 12 WGET_URL="https://github.com/breakfastquay/rubberband/archive/v$VERSION.tar.gz"
al@20470 13
al@20470 14 BUILD_DEPENDS="libsamplerate-dev libsndfile-dev fftw-dev ladspa-dev \
al@20470 15 vamp-plugin-sdk-dev"
al@21020 16 SPLIT="$PACKAGE-dev"
al@20470 17
al@20470 18 compile_rules() {
al@21020 19 ./configure $CONFIGURE_ARGS &&
al@21020 20 make &&
al@21020 21 make install
al@20470 22 }
al@20470 23
al@20470 24 genpkg_rules() {
al@20470 25 case $PACKAGE in
al@20470 26 rubberband)
al@20470 27 copy @std
al@20470 28 DEPENDS="fftw libsamplerate libsndfile vamp-plugin-sdk"
al@20470 29 ;;
al@20470 30 *-dev)
al@20470 31 copy @dev
al@20470 32 ;;
al@20470 33 esac
al@20470 34 }