mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/sofia-sip: new apkbuild
This commit is contained in:
parent
3edb11775e
commit
b06fd02ab6
41
testing/sofia-sip/APKBUILD
Normal file
41
testing/sofia-sip/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
||||
# Maintainer:
|
||||
pkgname=sofia-sip
|
||||
pkgver=1.12.11
|
||||
pkgrel=0
|
||||
pkgdesc="An open-source SIP User-Agent library"
|
||||
url="http://sofia-sip.sourceforge.net"
|
||||
arch="all"
|
||||
license="LGPL"
|
||||
depends=""
|
||||
depends_dev="libtool openssl-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
source="http://downloads.sourceforge.net/sofia-sip/$pkgname-$pkgver.tar.gz"
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr
|
||||
--with-openssl
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
find "$pkgdir" -name '*.la' -delete
|
||||
}
|
||||
|
||||
md5sums="f3582c62080eeecd3fa4cd5d4ccb4225 sofia-sip-1.12.11.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user