summaryrefslogtreecommitdiff
path: root/libs/speexdsp
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/speexdsp
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/speexdsp')
-rw-r--r--libs/speexdsp/.footprint19
-rw-r--r--libs/speexdsp/.signature6
-rw-r--r--libs/speexdsp/MAKEPKG28
3 files changed, 53 insertions, 0 deletions
diff --git a/libs/speexdsp/.footprint b/libs/speexdsp/.footprint
new file mode 100644
index 0000000..e445a9d
--- /dev/null
+++ b/libs/speexdsp/.footprint
@@ -0,0 +1,19 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/speex/
+-rw-r--r-- root/root usr/include/speex/speex_echo.h
+-rw-r--r-- root/root usr/include/speex/speex_jitter.h
+-rw-r--r-- root/root usr/include/speex/speex_preprocess.h
+-rw-r--r-- root/root usr/include/speex/speex_resampler.h
+-rw-r--r-- root/root usr/include/speex/speexdsp_config_types.h
+-rw-r--r-- root/root usr/include/speex/speexdsp_types.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libspeexdsp.so.1.5.2
+lrwxrwxrwx root/root usr/lib/libspeexdsp.so -> libspeexdsp.so.1.5.2
+lrwxrwxrwx root/root usr/lib/libspeexdsp.so.1 -> libspeexdsp.so.1.5.2
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/speexdsp.pc
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/doc/
+drwxr-xr-x root/root usr/share/doc/speexdsp/
+-rw-r--r-- root/root usr/share/doc/speexdsp/manual.pdf
diff --git a/libs/speexdsp/.signature b/libs/speexdsp/.signature
new file mode 100644
index 0000000..9c34700
--- /dev/null
+++ b/libs/speexdsp/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mNLQWnaj8ManzOh6YhLepntBbDOwsZcZt56fa8kJZYRL8kO5lWH2Rjl1si4r0rClV7alFCt28kfDK6PBMtpvPAo=
+
+SHA256 (MAKEPKG) = 5db12ba3b721a649934aa7b6c2a149521b68a628ecdd34c71b182d6a3b42499f
+SHA256 (.footprint) = 4693d43ed8d85069d9e6c3ce964fc233b3f4741bb6a35af78139fde195e7b78b
+SHA256 (speexdsp-1.2.1.tar.gz) = 8c777343e4a6399569c72abc38a95b24db56882c83dbdb6c6424a5f4aeb54d3d
+SHA256 (speexdsp#1.2.1-1.pkg.tar.gz) = f9d42736e1f5cc205de9193665a558f2a96775f64acff46c2b9f369eb230716f
diff --git a/libs/speexdsp/MAKEPKG b/libs/speexdsp/MAKEPKG
new file mode 100644
index 0000000..60fa002
--- /dev/null
+++ b/libs/speexdsp/MAKEPKG
@@ -0,0 +1,28 @@
+#!/bin/mkpkg
+# description: DSP library from the Speex codec
+# url: https://www.speex.org
+
+name=speexdsp
+version=1.2.1
+release=1
+depends=()
+source=(https://downloads.xiph.org/releases/speex/speexdsp-$version.tar.gz)
+sha256sums=(
+ "8c777343e4a6399569c72abc38a95b24db56882c83dbdb6c6424a5f4aeb54d3d"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/usr \
+ --disable-static
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh