2016-06-11 16:02:47 +10:00
|
|
|
# Description: A free codec library for speech.
|
2020-06-21 20:21:42 +10:00
|
|
|
# URL: https://www.speex.org/
|
2016-06-11 16:02:47 +10:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: libogg
|
|
|
|
|
|
|
|
name=speex
|
2022-06-19 21:39:03 +02:00
|
|
|
version=1.2.1
|
2016-06-11 16:02:47 +10:00
|
|
|
release=1
|
2022-06-19 21:39:03 +02:00
|
|
|
source=(https://gitlab.xiph.org/xiph/speex/-/archive/Speex-$version/speex-Speex-$version.tar.bz2)
|
2016-06-11 16:02:47 +10:00
|
|
|
|
|
|
|
build() {
|
2022-06-19 21:39:03 +02:00
|
|
|
cd $name-Speex-$version
|
2016-06-11 16:02:47 +10:00
|
|
|
|
2022-06-19 21:39:03 +02:00
|
|
|
NO_CONFIGURE=1 ./autogen.sh
|
2016-06-11 16:02:47 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2017-01-23 23:46:09 +11:00
|
|
|
--enable-epic-48k \
|
|
|
|
--enable-binaries
|
2016-06-11 16:02:47 +10:00
|
|
|
|
|
|
|
sed -i -e "/^SUBDIRS = /s/doc //" Makefile
|
|
|
|
make
|
2017-01-23 23:46:09 +11:00
|
|
|
make DESTDIR=$PKG install
|
2016-06-11 16:02:47 +10:00
|
|
|
}
|