speex-librstp.guncellendi

This commit is contained in:
milisbir 2017-07-25 02:25:48 +03:00
parent cd82679dd3
commit b7e1c3046e
2 changed files with 15 additions and 14 deletions

View File

@ -1,18 +1,19 @@
# Description: Güvenli gerçekzamanlı taşıyıcı protokolü
# Description: Güvenli gerçek zamanlı taşıyıcı protokolü
# URL: https://github.com/cisco/libsrtp
# Packager: milisarge
# Depends on:
name=libsrtp
version=2.0.0
version=1.5.4
release=1
source=(https://github.com/cisco/$name/archive/v$version.tar.gz)
source=(https://github.com/cisco/libsrtp/archive/v$version.tar.gz--$name-$version.tar.gz)
build() {
cd $name-$version
autoreconf -fvi
./configure --prefix=/usr --enable-openssl
make
./configure --prefix=/usr
#./configure --prefix=/usr
make libsrtp.a shared_library
make DESTDIR="$PKG" install
install -Dm0644 LICENSE "${PKG}"/usr/share/licenses/${name}/LICENSE
}

View File

@ -1,20 +1,20 @@
# Description: Ücretsiz konuşma için ücretsiz bir codec bileşeni
# URL: http://www.speex.org/
# Packager: milisarge
# Depends on: libogg
# Depends on: libogg speexdsp
name=speex
version=1.2rc2
version=1.2.0
release=1
source=( http://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
source=(http://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/speex-$version
make
make DESTDIR=$PKG install
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static \
--enable-binaries # Must be given or configure won't use pkg-config correctly
make
make -k check
make DESTDIR=$PKG install
}