1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/py3-netifaces/APKBUILD
2019-11-05 15:34:00 +00:00

30 lines
960 B
Text

# 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"