speex: 1.2beta1 -> 1.2beta2

This commit is contained in:
Danny Rawlins 2007-05-25 20:53:55 +10:00
parent 3f7843d0ca
commit 5287ed821b
3 changed files with 8 additions and 10 deletions

View File

@ -12,10 +12,10 @@ drwxr-xr-x root/root usr/include/speex/
-rw-r--r-- root/root usr/include/speex/speex_header.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/speex_stereo.h
-rw-r--r-- root/root usr/include/speex/speex_types.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libspeex.a
-rwxr-xr-x root/root usr/lib/libspeex.la
lrwxrwxrwx root/root usr/lib/libspeex.so -> libspeex.so.1.4.0
lrwxrwxrwx root/root usr/lib/libspeex.so.1 -> libspeex.so.1.4.0

View File

@ -1 +1 @@
aac2e4ba42122b885c787ea280acb3d9 speex-1.2beta1.tar.gz
5480fa53a7451603ecb57ff815c87ac0 speex-1.2beta2.tar.gz

View File

@ -5,23 +5,21 @@
# Depends on: libogg
name=speex
version=1.2beta1
version=1.2beta2
release=2
source=(http://downloads.us.xiph.org/releases/speex/speex-$version.tar.gz)
build() {
cd speex-$version
find $SRC -type f -exec sed -i -e 's|/share/man|/man|g' {} \;
./configure \
--prefix=/usr \
--mandir=$PKG/usr/man \
--disable-oggtest \
--disable-static \
--enable-epic-48k
export MAKEFLAGS="$MAKEFLAGS -j1"
make CFLAGS="$CFLAGS"
sed -i -e "/^SUBDIRS = /s/doc //" Makefile
make
make prefix=$PKG/usr install
mv $PKG/usr/share/man $PKG/usr/ # Makefile ignores --mandir (1.2beta1)
rm -r $PKG/usr/share/doc
}