mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
23 lines
565 B
Bash
23 lines
565 B
Bash
pkgname=ortp
|
|
pkgver=1.0.1
|
|
pkgrel=1
|
|
pkgdesc="A Real-time Transport Protocol (RTP) library"
|
|
arch=('x86_64')
|
|
url="http://www.linphone.org/index.php/eng/code_review/ortp"
|
|
license=('LGPL')
|
|
depends=('openssl' 'bctoolbox')
|
|
source=("https://github.com/BelledonneCommunications/ortp/archive/${pkgver}.tar.gz")
|
|
sha256sums=('7baaaf82b86965e8b369ac1eede3d65c1c7223a9d8154fa85d61cedd3c577ce6')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|