wok 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 4af5a3ba8ed3
children 46bb13b9af54
files fftw/description.txt vamp-sdk-dev/receipt vamp-sdk/description.txt vamp-sdk/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fftw/description.txt	Fri Feb 04 17:06:06 2022 +0100
     1.3 @@ -0,0 +1,7 @@
     1.4 +FFTW is a C subroutine library for computing the discrete
     1.5 +Fourier transform (DFT) in one or more dimensions,
     1.6 +of arbitrary input size, and of both real and complex data
     1.7 +(as well as of even or odd data, i.e. the discrete cosine
     1.8 +or sine transforms or DCT/DST).
     1.9 +We believe that FFTW, which is free software, should become
    1.10 +the FFT library of choice for most applications.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/vamp-sdk-dev/receipt	Fri Feb 04 17:06:06 2022 +0100
     2.3 @@ -0,0 +1,20 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="vamp-sdk-dev"
     2.7 +VERSION="2.9.0"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Framework for audio analysis and feature extraction - development files."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="BSD-3-Clause"
    2.12 +WEB_SITE="https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk"
    2.13 +
    2.14 +DEPENDS="vamp-sdk"
    2.15 +WANTED="vamp-sdk"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	cook_copy_folders	include
    2.21 +	cook_copy_folders	pkgconfig
    2.22 +	cook_copy_files		*.*a
    2.23 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/vamp-sdk/description.txt	Fri Feb 04 17:06:06 2022 +0100
     3.3 @@ -0,0 +1,2 @@
     3.4 +The standard Software Development Kit (SDK) for developing
     3.5 +Vamp plugins and hosts in C or C++.
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/vamp-sdk/receipt	Fri Feb 04 17:06:06 2022 +0100
     4.3 @@ -0,0 +1,37 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="vamp-sdk"
     4.7 +VERSION="2.9.0"
     4.8 +CATEGORY="development"
     4.9 +SHORT_DESC="Framework for audio analysis and feature extraction."
    4.10 +MAINTAINER="maintainer@slitaz.org"
    4.11 +LICENSE="BSD-3-Clause"
    4.12 +WEB_SITE="https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk"
    4.13 +
    4.14 +SOURCE="vamp-plugin-sdk"
    4.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    4.16 +WGET_URL="https://code.soundsoftware.ac.uk/attachments/download/2588/$TARBALL"
    4.17 +
    4.18 +DEPENDS="gcc83-lib-base libsndfile"
    4.19 +BUILD_DEPENDS="gcc83 libsndfile-dev"
    4.20 +
    4.21 +# Rules to configure and make the package.
    4.22 +compile_rules()
    4.23 +{
    4.24 +	./configure			\
    4.25 +		CC=gcc-83		\
    4.26 +		CXX=g++-83		\
    4.27 +		--prefix=/usr		\
    4.28 +		--sysconfdir=/etc	\
    4.29 +		--mandir=/usr/share/man	\
    4.30 +		--localstatedir=/var &&
    4.31 +	make &&
    4.32 +	make install DESTDIR=$DESTDIR
    4.33 +}
    4.34 +
    4.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.36 +genpkg_rules()
    4.37 +{
    4.38 +	cook_copy_folders	bin
    4.39 +	cook_copy_files		*.so*
    4.40 +}