mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:37:15 +08:00
25 lines
634 B
Bash
25 lines
634 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=python-dnspython
|
|
pkgver=1.8.0
|
|
pkgrel=3
|
|
pkgdesc="A DNS toolkit for Python"
|
|
arch=('any')
|
|
url="http://www.dnspython.org"
|
|
license=('BSD')
|
|
depends=('python2')
|
|
source=(http://www.dnspython.org/kits/$pkgver/dnspython-$pkgver.tar.gz)
|
|
md5sums=('77f379e0cb21e11470a35359e6211c53')
|
|
|
|
build() {
|
|
cd $srcdir/dnspython-$pkgver
|
|
python2 setup.py install --root=$pkgdir
|
|
install -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|