🔒 Repository is read-only – file editing is disabled.

recipes/utils/libsrtp/PAGBUILD.yaml main

36 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930313233343536
pkgname: libsrtp
pkgver: '2.8.0'
pkgrel: '1'
pkgdesc: 'Library for SRTP (Secure RealTime Transport Protocol)'
url: 'https://github.com/cisco/libsrtp'
arch: x86_64
license:
- 'BSD-3-Clause'

depends: []
makedepends:
- python
- meson
- nss

source:
- 'https://github.com/cisco/libsrtp/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  meson setup ${pkgname}-${pkgver} build $PKGMK_SRTP \
    --prefix=/usr \
    --buildtype=plain \
    --wrap-mode nodownload \
    --auto-features disabled \
    -D b_pie=true \
    -D crypto-library=nss \
    -D crypto-library-kdf=disabled \
    -D doc=disabled
  meson compile -C build
  DESTDIR=${PKGDIR} meson install -C build

package: |
  true