diff options
author | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
commit | 9a26d3fdc7fca2df6f824b56034ab9a823e898d8 (patch) | |
tree | 278bbf05c72536a30e701eebbd3546ba137543e7 /repo/speex | |
parent | f6332a43c35387c4a2dea1746be5fd092890ae0e (diff) |
added python deps for libvirt
Diffstat (limited to 'repo/speex')
-rw-r--r-- | repo/speex/speex.xibuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/speex/speex.xibuild b/repo/speex/speex.xibuild new file mode 100644 index 0000000..44136f7 --- /dev/null +++ b/repo/speex/speex.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="speex" +DESC="an audio compression format designed for speech" + +MAKEDEPS="libogg speexdsp" + +PKG_VER=1.2.0 +SOURCE="http://downloads.us.xiph.org/releases/speex/speex-$PKG_VER.tar.gz" + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-static \ + --enable-binaries + make +} + +package() { + make -j1 DESTDIR="$PKG_DEST" install +} + |