mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
699 B
Bash
26 lines
699 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=python2-dns
|
|
_pkgname=dnspython
|
|
pkgver=1.10.0
|
|
pkgrel=1
|
|
pkgdesc="A DNS toolkit for Python"
|
|
arch=('any')
|
|
url="http://www.dnspython.org"
|
|
license=('BSD')
|
|
depends=('python2')
|
|
replaces=(python-dnspython)
|
|
provides=(python-dnspython)
|
|
source=(http://www.dnspython.org/kits/$pkgver/$_pkgname-$pkgver.tar.gz)
|
|
md5sums=('b4f60852fd7ba64fc7c3a1fa239eba33')
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
python2 setup.py install --root=$pkgdir
|
|
install -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|