diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:06 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:06 +0200 |
| commit | 62d449d1da6c5e650b2da6f3cc506d67ba9c74ce (patch) | |
| tree | 26606a9ae435cf9c9d2f137195e65cce7be1bff9 | |
| parent | cb186e8047b7b6661566e09ffac4e2ec886af616 (diff) | |
| parent | 3901a4f88540042f8a4c8338632d120147ce8aea (diff) | |
Add 'aur/libosmo-abis/' from commit '3901a4f88540042f8a4c8338632d120147ce8aea'
git-subtree-dir: aur/libosmo-abis
git-subtree-mainline: cb186e8047b7b6661566e09ffac4e2ec886af616
git-subtree-split: 3901a4f88540042f8a4c8338632d120147ce8aea
| -rw-r--r-- | aur/libosmo-abis/.SRCINFO | 15 | ||||
| -rw-r--r-- | aur/libosmo-abis/PKGBUILD | 27 |
2 files changed, 42 insertions, 0 deletions
diff --git a/aur/libosmo-abis/.SRCINFO b/aur/libosmo-abis/.SRCINFO new file mode 100644 index 0000000..fd95960 --- /dev/null +++ b/aur/libosmo-abis/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = libosmo-abis + pkgdesc = Osmocom library for A-bis interface + pkgver = 0.3.2 + pkgrel = 1 + url = http://openbsc.osmocom.org/trac/wiki/libosmo-abis + arch = any + license = GPL + makedepends = git + depends = libosmocore + depends = ortp + source = git://git.osmocom.org/libosmo-abis.git#tag=v0.3.2 + sha256sums = SKIP + +pkgname = libosmo-abis + diff --git a/aur/libosmo-abis/PKGBUILD b/aur/libosmo-abis/PKGBUILD new file mode 100644 index 0000000..68523c1 --- /dev/null +++ b/aur/libosmo-abis/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=libosmo-abis +pkgver=0.3.2 +pkgrel=1 +pkgdesc="Osmocom library for A-bis interface" +arch=('any') +url="http://openbsc.osmocom.org/trac/wiki/libosmo-abis" +license=(GPL) +depends=('libosmocore' 'ortp') +makedepends=('git') +source=("git://git.osmocom.org/${pkgname}.git#tag=v${pkgver}") +sha256sums=("SKIP") + +build() { + cd "${srcdir}/${pkgname}" + autoreconf -i + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}" + make DESTDIR=$pkgdir install +} + +# vim:set ts=2 sw=2 et: |
