# Contributor: Guillaume Horel # Contributor: Andrea Scarpino # Contributor: Jaroslaw Swierczynski # Contributor: William Rea pkgname=ortp-git _pkgname=ortp pkgver=4.4.0.alpha.r1.g079d9f1 pkgrel=1 pkgdesc="A Real-time Transport Protocol (RTP) library" arch=('x86_64') url="https://github.com/BelledonneCommunications/ortp" license=('GPL3') conflicts=('ortp') provides=("ortp=$pkgver") depends=('bctoolbox>=4.3.0') makedepends=('cmake' 'git') source=("git+https://github.com/BelledonneCommunications/ortp.git") sha256sums=('SKIP') pkgver() { cd "${srcdir}/${_pkgname}" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/; s/-/./g' } build() { cd ${_pkgname} cmake -DCMAKE_INSTALL_PREFIX=/usr \ -DENABLE_STATIC="NO" \ -DCMAKE_SKIP_INSTALL_RPATH=ON . make } package() { cd ${_pkgname} make DESTDIR="${pkgdir}" install }