mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 21:07:16 +08:00
29 lines
748 B
Bash
29 lines
748 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
# contributor Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=libexosip2
|
|
pkgver=3.6.0
|
|
pkgrel=2
|
|
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>=3.6.0' 'openssl')
|
|
options=(!libtool)
|
|
source=("http://download.savannah.nongnu.org/releases/exosip/libeXosip2-${pkgver/_/-}.tar.gz")
|
|
md5sums=('6fef4c110f1305048a8b307f440933d9')
|
|
|
|
build() {
|
|
cd "$srcdir/libeXosip2-${pkgver/_/-}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/libeXosip2-${pkgver/_/-}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|