diff --git a/common/shlibs b/common/shlibs index 430f316a1fc..88ee83b4f9f 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1726,6 +1726,8 @@ libtls.so.11 libtls11-2.4.2_1 libvamp-hostsdk.so.3 libvamp-plugin-sdk-2.2_6 libportmidi.so portmidi-217_1 libsox.so.3 sox-14.4.2_1 +libsoxr.so.0 libsoxr-0.1.2_1 +libsoxr-lsr.so.0 libsoxr-0.1.2_1 libframe.so.6 frame-2.5.0_1 libgrail.so.6 grail-3.1.0_1 libgeis.so.1 geis-2.2.16_1 diff --git a/srcpkgs/libsoxr-devel b/srcpkgs/libsoxr-devel new file mode 120000 index 00000000000..3db5b01c04b --- /dev/null +++ b/srcpkgs/libsoxr-devel @@ -0,0 +1 @@ +libsoxr \ No newline at end of file diff --git a/srcpkgs/libsoxr-doc b/srcpkgs/libsoxr-doc new file mode 120000 index 00000000000..3db5b01c04b --- /dev/null +++ b/srcpkgs/libsoxr-doc @@ -0,0 +1 @@ +libsoxr \ No newline at end of file diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template new file mode 100644 index 00000000000..0fd812153d0 --- /dev/null +++ b/srcpkgs/libsoxr/template @@ -0,0 +1,35 @@ +# Template file for 'libsoxr' +pkgname=libsoxr +version=0.1.2 +revision=1 +wrksrc="${pkgname#lib}-${version}-Source" +build_style=cmake +configure_args="-DBUILD_EXAMPLES=OFF -DBUILD_SHARED_LIBS=ON + -DVISIBILITY_HIDDENL=ON -DWITH_AVFFT=ON -DWITH_DOUBLE_PRECISION=ON + -DWITH_LSR_BINDINGS=ON -DWITH_OPENMP=ON -DWITH_PFFFT=ON -DWITH_SIMD=ON" +makedepends="libgomp-devel" +short_desc="SoX resampler library" +maintainer="Juergen Buchmueller " +license="GPL-2" +homepage="http://sourceforge.net/p/soxr/wiki/Home/" +distfiles="http://downloads.sourceforge.net/project/soxr/soxr-${version}-Source.tar.xz" +checksum=54e6f434f1c491388cd92f0e3c47f1ade082cc24327bdc43762f7d1eefe0c275 + +libsoxr-devel_package() { + short_desc=" - development files" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/include + vmove usr/lib/*.so + vmove usr/lib/pkgconfig + } +} + +libsoxr-doc_package() { + short_desc=" - documentation and examples" + depends="${sourcepkg}>=${version}_${revision}" + noarch=yes + pkg_install() { + vmove usr/share/doc + } +}