summaryrefslogtreecommitdiff
path: root/community/python2-netifaces/PKGBUILD
blob: daad6408feee49f2ec3f219996161f8641be200e (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
# $Id: PKGBUILD 83533 2013-02-02 14:19:06Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Gergely Imreh <imrehg(at)gmail(dot)com>
# Contributor: Ghost of Kendo <ghostofkendo at gmail dot com>

pkgname=python2-netifaces
pkgver=0.8
pkgrel=2
pkgdesc="Portable module to access network interface information in Python"
arch=('i686' 'x86_64')
url="http://alastairs-place.net/netifaces/"
license=('MIT')
depends=('python2')
makedepends=('python2-distribute')
source=("http://alastairs-place.net/projects/netifaces/netifaces-${pkgver}.tar.gz")
md5sums=('e57e5983f4c286fac5f8068fbfc5c873')

package() {
  cd "${srcdir}/netifaces-${pkgver}"
  python2 setup.py install --root "${pkgdir}"

  # Install license, that is inside the readme file
  install -Dm644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}