diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-06-30 15:50:43 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-06-30 15:50:43 +0300 |
| commit | 90044f12c71dfbb2d706065563560fca815810ec (patch) | |
| tree | 23a34ebee01381bdee9207e4072b72fe89d674b3 | |
Initial import
| -rw-r--r-- | .SRCINFO | 15 | ||||
| -rw-r--r-- | PKGBUILD | 27 |
2 files changed, 42 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..2086186 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = libosmo-abis + pkgdesc = Osmocom library for A-bis interface + pkgver = 0.3.1 + 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.1 + sha256sums = SKIP + +pkgname = libosmo-abis + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..0fe4964 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=libosmo-abis +pkgver=0.3.1 +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: |
