diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:37 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:37 +0200 |
| commit | 7f0f3ac41e0ec42be93d47bbdb1d5cb7a83886b2 (patch) | |
| tree | 2ad35c367a9ff997fe6fe84c211873eb1fc7c40e | |
| parent | b42d9a9594f1f9869db87a7b74dbfc12a4525115 (diff) | |
| parent | 1056817fc0e45febdb86c1e1adc391f528b38217 (diff) | |
Add 'aur/openbsc/' from commit '1056817fc0e45febdb86c1e1adc391f528b38217'
git-subtree-dir: aur/openbsc
git-subtree-mainline: b42d9a9594f1f9869db87a7b74dbfc12a4525115
git-subtree-split: 1056817fc0e45febdb86c1e1adc391f528b38217
| -rw-r--r-- | aur/openbsc/.SRCINFO | 19 | ||||
| -rw-r--r-- | aur/openbsc/PKGBUILD | 27 |
2 files changed, 46 insertions, 0 deletions
diff --git a/aur/openbsc/.SRCINFO b/aur/openbsc/.SRCINFO new file mode 100644 index 0000000..fbe9f5f --- /dev/null +++ b/aur/openbsc/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = openbsc + pkgdesc = Free software implementations for the GSM/G3PP protocol stacks + pkgver = 0.14.0 + pkgrel = 1 + url = http://openbsc.osmocom.org + arch = any + license = GPL + depends = libdbi + depends = libdbi-drivers + depends = ortp + depends = libosmocore + depends = libosmo-abis + depends = libosmo-netif + optdepends = libosmo-sccp: for building BSC NAT + source = git://git.osmocom.org/openbsc.git#tag=0.14.0 + sha256sums = SKIP + +pkgname = openbsc + diff --git a/aur/openbsc/PKGBUILD b/aur/openbsc/PKGBUILD new file mode 100644 index 0000000..29606bb --- /dev/null +++ b/aur/openbsc/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=openbsc +pkgver=0.14.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: |
