blob: 4afdd191b2ea835997168ec1346965cc0fdaab9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
pkgname=openbsc
pkgver=0.15.0
pkgrel=1
pkgdesc="Free software implementations for the GSM/G3PP protocol stacks"
arch=('any')
url="http://openbsc.osmocom.org"
license=(GPL)
depends=('libdbi' 'libdbi-drivers' 'ortp' 'libosmocore' 'libosmo-abis' 'libosmo-netif')
optdepends=('libosmo-sccp: for building BSC NAT')
source=("git://git.osmocom.org/${pkgname}.git#tag=${pkgver}")
sha256sums=('SKIP')
build() {
cd "${srcdir}/${pkgname}/${pkgname}"
autoreconf -i
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}/${pkgname}"
make DESTDIR=${pkgdir} install
}
# vim:set ts=2 sw=2 et:
|