wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/vamp-sdk/receipt	Fri Feb 04 17:06:06 2022 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="vamp-sdk"
     1.7 +VERSION="2.9.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Framework for audio analysis and feature extraction."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="BSD-3-Clause"
    1.12 +WEB_SITE="https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk"
    1.13 +
    1.14 +SOURCE="vamp-plugin-sdk"
    1.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.16 +WGET_URL="https://code.soundsoftware.ac.uk/attachments/download/2588/$TARBALL"
    1.17 +
    1.18 +DEPENDS="gcc83-lib-base libsndfile"
    1.19 +BUILD_DEPENDS="gcc83 libsndfile-dev"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	./configure			\
    1.25 +		CC=gcc-83		\
    1.26 +		CXX=g++-83		\
    1.27 +		--prefix=/usr		\
    1.28 +		--sysconfdir=/etc	\
    1.29 +		--mandir=/usr/share/man	\
    1.30 +		--localstatedir=/var &&
    1.31 +	make &&
    1.32 +	make install DESTDIR=$DESTDIR
    1.33 +}
    1.34 +
    1.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.36 +genpkg_rules()
    1.37 +{
    1.38 +	cook_copy_folders	bin
    1.39 +	cook_copy_files		*.so*
    1.40 +}