summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2ac507df9c5c1ff59bb8cd816f9c8b5699d7fb72 (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: Visa Jokelainen <visaj at iki dot fi>
_pkgname=nadds
pkgname=python2-$_pkgname
pkgver=0.1.2
pkgrel=1
pkgdesc="Low level linux api calls for python"
arch=('i686' 'x86_64')
url="https://github.com/orlof/python-nadds/"
license=('LGPL')
groups=()
depends=('python2')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("https://github.com/orlof/python-$_pkgname/archive/$pkgver.tar.gz")
md5sums=(3ab477330bdaaeff10b2d8e658a1d474)

package() {
  cd "$srcdir/python-$_pkgname-$pkgver"
  python2 setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: