talimat 441 B

12345678910111213141516171819
  1. # Description: Güvenli gerçekzamanlı taşıyıcı protokolü
  2. # URL: https://github.com/cisco/libsrtp
  3. # Packager: milisarge
  4. # Depends on:
  5. name=libsrtp
  6. version=2.0.0
  7. release=1
  8. source=(https://github.com/cisco/$name/archive/v$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. autoreconf -fvi
  12. ./configure --prefix=/usr --enable-openssl
  13. make
  14. make DESTDIR="$PKG" install
  15. install -Dm0644 LICENSE "${PKG}"/usr/share/licenses/${name}/LICENSE
  16. }