blob: c6b4411a3d96783c984d2fc5ba3924ebeb5a8eb5 (
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
|
# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
pkgname=osmo-python-tests
pkgver=0.3.0
pkgrel=1
pkgdesc='Osmocom tools for testing VTY/CTRL interfaces'
url='https://gitea.osmocom.org/cellular-infrastructure/osmo-python-tests'
license=('GPL')
arch=('any')
depends=('python')
makedepends=('git' 'python-setuptools')
source=("git+https://gitea.osmocom.org/cellular-infrastructure/osmo-python-tests.git#tag=${pkgver}")
sha256sums=('SKIP')
build() {
cd "${pkgname}"
python setup.py build
}
package() {
cd "${pkgname}"
python setup.py install --root="${pkgdir}" --optimize=1
}
# vim:set ts=2 sw=2 et:
|