blob: 24b2d24f848b339efe90ca527f715bf723ba364d (
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
44
45
46
|
# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
pkgname=osmo-uecups-git
pkgver=0.2.2.r14.g6cb3ba1
pkgrel=1
pkgdesc="Osmocom UE simulation control/user plane separation"
url="https://osmocom.org/projects/osmo-uecups/wiki"
arch=('i686' 'x86_64')
license=('GPL-2.0-or-later')
depends=('jansson'
'libnl'
'lksctp-tools'
'libosmocore-git'
'libosmo-netif-git')
makedepends=('git')
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}=${pkgver}")
backup=('etc/osmocom/osmo-uecups-daemon.cfg')
source=("git+https://gitea.osmocom.org/cellular-infrastructure/${pkgname%-git}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname%-git}"
autoreconf -f -i
}
build() {
cd "${pkgname%-git}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--bindir=/usr/bin
make
}
package() {
cd "${pkgname%-git}"
make DESTDIR=${pkgdir} install
}
# vim:set ts=2 sw=2 et:
|