diff options
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 +} + |