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 /PKGBUILD | |
Initial import
Diffstat (limited to 'PKGBUILD')
| -rw-r--r-- | PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
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: |
