summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 031b5a19236ccd6058823583d5710a2217160bc8 (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
41
42
43
# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
# Contributor: Josef Miegl <josef@miegl.cz>

pkgname=osmo-msc
pkgver=1.15.0
pkgrel=1
pkgdesc="Osmocom's Mobile Switching Center for 2G and 3G circuit-switched mobile networks"
url="https://osmocom.org/projects/osmomsc"
arch=('i686' 'x86_64' 'aarch64' 'armv7h')
license=('AGPL-3.0-or-later AND GPL-2.0-or-later')
depends=('libosmocore'
         'libosmo-abis'
         'libosmo-netif'
         'libosmo-sigtran'
         'libosmo-gsup-client.so' # from osmo-hlr
         'libosmo-mgcp-client.so' # from osmo-mgw
         'libosmo-ranap.so' # from osmo-iuh (for --enable-iu)
         'libasn1c.so' # (for --enable-iu)
         'libsmpp34.so' # (for --enable-smpp)
         'lksctp-tools'
         'sqlite'
         'talloc')
conflicts=("${pkgname}-git")
backup=('etc/osmocom/osmo-msc.cfg')
source=("https://downloads.osmocom.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('97b02691cf3cc8d81094e8f8b6fc2ed069b12d1760a4aeb1d4b8ae0771d548d2')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --localstatedir=/var \
              --enable-iu \
              --enable-smpp
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR=${pkgdir} install
}

# vim:set ts=2 sw=2 et: