mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
23 lines
567 B
Bash
23 lines
567 B
Bash
pkgname=libexosip2
|
|
pkgver=5.0.0
|
|
pkgrel=1
|
|
pkgdesc="A library that hides the complexity of using SIP for multimedia session establishement"
|
|
arch=('x86_64')
|
|
url="http://savannah.nongnu.org/projects/exosip/"
|
|
license=('GPL')
|
|
depends=("libosip2>=$pkgver" 'openssl')
|
|
md5sums=('91a69fdd7d5da5b94e71b764cabb2e29')
|
|
options=(!libtool)
|
|
source=("http://download.savannah.nongnu.org/releases/exosip/$pkgname-${pkgver/_/-}.tar.gz")
|
|
|
|
build() {
|
|
cd $pkgname-${pkgver/_/-}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-${pkgver/_/-}
|
|
make DESTDIR=$pkgdir install
|
|
}
|