diff --git a/aur/python2-netifaces/PKGBUILD b/aur/python2-netifaces/PKGBUILD new file mode 100644 index 000000000..896d32412 --- /dev/null +++ b/aur/python2-netifaces/PKGBUILD @@ -0,0 +1,27 @@ +#Maintainer: Gergely Imreh +#Contributor: Gergely Imreh +#Contributor: Kevin Mihelich + +plugrel=1 + +pkgname=python2-netifaces +_orig_name=netifaces +pkgver=0.5 +pkgrel=1 +pkgdesc="Portable module to access network interface information in Python." +depends=('python2') +makedepends=('python2-distribute') +arch=('i686' 'x86_64') +url="http://alastairs-place.net/netifaces/" +license=('MIT') +provides=('netifaces' 'python-netifaces') +source=("http://alastairs-place.net/projects/netifaces/${_orig_name}-${pkgver}.tar.gz") +build() { + cd "${srcdir}/${_orig_name}-${pkgver}" + python2 setup.py install --root "${pkgdir}" || return 1 + + # Install license, that is inside the readme file + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 README "${pkgdir}/usr/share/licenses/${pkgname}/README" || return 1 +} +md5sums=('1538808bd04614268cb61b1f78b695f3')