19 lines
625 B
Bash
19 lines
625 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=tauthon-ipaddress
|
|
pkgver=1.0.23
|
|
pkgrel=2
|
|
pkgdesc="IPv4/IPv6 manipulation library for Tauthon"
|
|
arch=(any)
|
|
url="https://github.com/phihag/ipaddress"
|
|
license=('Python')
|
|
depends=('tauthon')
|
|
source=("https://pypi.io/packages/source/i/ipaddress/ipaddress-$pkgver.tar.gz")
|
|
sha512sums=('340e2a8698df1868038f55889671442eba17f06ec3f493759d8d0a9bf406eefbe1f67c14ca616f52e5bf2280942dcece7e89fb19de0923bee1ee20e60f48896e')
|
|
|
|
package() {
|
|
cd ipaddress-$pkgver
|
|
tauthon setup.py install --root="$pkgdir/" --optimize=1
|
|
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|