blob: 18772900d17197cc4a6d7251daaa61067db34cdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
pkgname=libosmo-abis
pkgver=0.5.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=${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:
|