summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD13
2 files changed, 11 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 705e85d12c62..c7feeb4cadbd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = osmo-ggsn-git
pkgdesc = Open Source implementation of a GGSN (Gateway GPRS Support Node)
- pkgver = 1.3.0.r0.gf5a268a
+ pkgver = 1.11.0.r2.g8d97644
pkgrel = 1
url = https://osmocom.org/projects/openggsn
arch = i686
@@ -11,11 +11,10 @@ pkgbase = osmo-ggsn-git
makedepends = git
depends = libosmocore
depends = talloc
- provides = osmo-ggsn
+ provides = libgtp.so=6-64
conflicts = osmo-ggsn
backup = etc/osmocom/osmo-ggsn.cfg
- source = git+https://git.osmocom.org/osmo-ggsn
+ source = git+https://gitea.osmocom.org/cellular-infrastructure/osmo-ggsn.git
sha256sums = SKIP
pkgname = osmo-ggsn-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 6ab19156c5da..0e61dd0f90d2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,8 @@
-# Maintainer: Josef Miegl <josef@miegl.cz>
+# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
+# Contributor: Josef Miegl <josef@miegl.cz>
pkgname=osmo-ggsn-git
-pkgver=1.3.0.r0.gf5a268a
+pkgver=1.11.0.r2.g8d97644
pkgrel=1
pkgdesc="Open Source implementation of a GGSN (Gateway GPRS Support Node)"
url="https://osmocom.org/projects/openggsn"
@@ -9,10 +10,10 @@ arch=('i686' 'x86_64' 'aarch64' 'armv7h')
license=(GPL)
depends=('libosmocore' 'talloc')
makedepends=('git')
-provides=("${pkgname%-git}")
+provides=('libgtp.so=6-64')
conflicts=("${pkgname%-git}")
backup=('etc/osmocom/osmo-ggsn.cfg')
-source=("git+https://git.osmocom.org/${pkgname%-git}")
+source=("git+https://gitea.osmocom.org/cellular-infrastructure/${pkgname%-git}.git")
sha256sums=('SKIP')
pkgver() {
@@ -27,7 +28,9 @@ prepare() {
build() {
cd "${pkgname%-git}"
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var
make
}