mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-26 10:12:13 +01:00
36 lines
645 B
Plaintext
36 lines
645 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=py-ipaddr
|
|
_realname=ipaddr
|
|
pkgver=2.1.10
|
|
pkgrel=0
|
|
pkgdesc="Python IP address manipulation library"
|
|
url="http://code.google.com/p/ipaddr-py"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="python"
|
|
depends_dev=
|
|
makedepends="$depends_dev"
|
|
install=
|
|
subpackages=
|
|
source="http://ipaddr-py.googlecode.com/files/$_realname-$pkgver.tar.gz"
|
|
|
|
|
|
_builddir="$srcdir"/$_realname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
return 0
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root="$pkgdir"
|
|
}
|
|
|
|
md5sums="f315ac829218e9735c5d772d59a3e0e7 ipaddr-2.1.10.tar.gz"
|