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