mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:47:14 +08:00
23 lines
549 B
Bash
23 lines
549 B
Bash
pkgname=ortp
|
|
pkgver=0.24.2
|
|
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')
|
|
options=('!libtool')
|
|
source=("http://download.savannah.gnu.org/releases/linphone/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('9eb17e1e79f25acb06bbacc06ad3958f')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|