aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-netifaces/APKBUILD
blob: a62e43f83d68f217ac04324ea7c192f63041dc86 (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
28
29
30
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-netifaces
_pkgname=netifaces
pkgver=0.10.9
pkgrel=3
pkgdesc="Portable module to access network interface information in Python3"
url="http://alastairs-place.net/netifaces/"
arch="all"
license="MIT"
makedepends="python3-dev py3-setuptools linux-headers"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

replaces="py-netifaces" # Backwards compatibility
provides="py-netifaces=$pkgver-r$pkgrel" # Backwards compatibility

check() {
	python3 setup.py check
}

build() {
	python3 setup.py build
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="8fc593de4d2cbda46a3e2430ede031360f1abfc64d47d00fbec09f3395fd83479bf29d97cb6834b1df06850c9ac2745c9344b6814f34be5975d4d5df98e05e87  netifaces-0.10.9.tar.gz"