wok view vamp-sdk/receipt @ rev 24364

created recipes for vamp-sdk and vamp-sdk-dev (2.9.0)
author Hans-G?nter Theisgen
date Fri Feb 04 17:06:06 2022 +0100 (2022-02-04)
parents
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="vamp-sdk"
4 VERSION="2.9.0"
5 CATEGORY="development"
6 SHORT_DESC="Framework for audio analysis and feature extraction."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="BSD-3-Clause"
9 WEB_SITE="https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk"
11 SOURCE="vamp-plugin-sdk"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://code.soundsoftware.ac.uk/attachments/download/2588/$TARBALL"
15 DEPENDS="gcc83-lib-base libsndfile"
16 BUILD_DEPENDS="gcc83 libsndfile-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 CC=gcc-83 \
23 CXX=g++-83 \
24 --prefix=/usr \
25 --sysconfdir=/etc \
26 --mandir=/usr/share/man \
27 --localstatedir=/var &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders bin
36 cook_copy_files *.so*
37 }