blob: ed1bd0ab58a0ef0d664b1062e287d67843036340 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
# Contributor: Josef Miegl <josef@miegl.cz>
pkgname=osmo-sgsn
pkgver=1.12.1
pkgrel=1
pkgdesc="Osmocom's Serving GPRS Support Node for 2G and 3G packet-switched mobile networks"
url="https://osmocom.org/projects/osmosgsn"
arch=('i686' 'x86_64' 'aarch64' 'armv7h')
license=(GPL)
depends=('libosmocore'
'libosmo-sigtran'
'libosmo-gsup-client.so' # from osmo-hlr
'libosmo-ranap.so' # from osmo-iuh
'libasn1c.so' # from libasn1c
'libgtp.so' # from osmo-ggsn
'talloc'
'c-ares')
makedepends=('libosmo-abis')
conflicts=("${pkgname}-git")
backup=('etc/osmocom/osmo-sgsn.cfg'
'etc/osmocom/osmo-gtphub.cfg')
source=("https://downloads.osmocom.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('197929fa1524ee495767ee8fcea31817da55abc5d90530b3cf0e8cbf539e995b')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-iu
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
}
# vim:set ts=2 sw=2 et:
|