diff options
author | Jeff Bilyk <jbilyk@gmail.com> | 2012-10-05 14:45:57 -0400 |
---|---|---|
committer | Jeff Bilyk <jbilyk@gmail.com> | 2012-10-05 14:45:57 -0400 |
commit | 7fa17b0afadd130e1708697ba43a05cdcf8b51a4 (patch) | |
tree | 27811b2e70313164049344816ec938f3ba336f52 | |
parent | c5db02cfa2bc68252c85f3ac58b67e445da8ed6a (diff) | |
download | aports-7fa17b0afadd130e1708697ba43a05cdcf8b51a4.tar.bz2 aports-7fa17b0afadd130e1708697ba43a05cdcf8b51a4.tar.xz |
testing/py-twisted-names: new aport
-rw-r--r-- | testing/py-twisted-names/APKBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/py-twisted-names/APKBUILD b/testing/py-twisted-names/APKBUILD new file mode 100644 index 0000000000..bfc31f569f --- /dev/null +++ b/testing/py-twisted-names/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: Jeff Bilyk <jbilyk@alpinelinux.org> +# Maintainer: + +pkgname=py-twisted-names +_pkgname=TwistedNames +pkgver=12.0.0 +pkgrel=0 +pkgdesc="Python Twisted Names DNS server and resolver library" +url="http://twistedmatrix.com/trac/wiki/TwistedNames" +arch="noarch" +license="MIT" +depends="py-twisted" +makedepends="python-dev" +source="http://twistedmatrix.com/Releases/Names/12.0/$_pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir"/$_pkgname-$pkgver/ + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 + +} + +md5sums="1e7b0f1c60d550712245455080f85115 TwistedNames-12.0.0.tar.bz2" |