summaryrefslogtreecommitdiff
path: root/community/python-biopython
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-13 03:42:46 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-13 03:42:46 +0000
commitbcefa96cbc68f340b2aa11c108353993db074e76 (patch)
tree6891076b95494e90c5b7a9fd3628ea56e17588b5 /community/python-biopython
parent61e090957dbc6b062f3a1af7eeb0d58478c6657d (diff)
Mon Jan 13 03:38:11 UTC 2014
Diffstat (limited to 'community/python-biopython')
-rw-r--r--community/python-biopython/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/python-biopython/PKGBUILD b/community/python-biopython/PKGBUILD
new file mode 100644
index 000000000..75d169a4e
--- /dev/null
+++ b/community/python-biopython/PKGBUILD
@@ -0,0 +1,27 @@
+# $id$
+# Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com>
+# Contributor: Stunts <f.pinamartins at gmail dot com>
+# Contributor: damir <damir at archlinux dot org>
+
+pkgname=python-biopython
+_upstream_pkgname=biopython
+pkgver=1.63
+pkgrel=2
+pkgdesc="Freely available Python tools for computational molecular biology"
+arch=('i686' 'x86_64')
+url="http://www.biopython.org"
+license=('custom')
+depends=('python-numpy')
+source=(http://www.biopython.org/DIST/${_upstream_pkgname}-${pkgver}.tar.gz)
+md5sums=('09c58433150849b131d2d9bbfdf342d3')
+
+build() {
+ cd "${srcdir}/${_upstream_pkgname}-${pkgver}/"
+ python setup.py build
+}
+
+package() {
+ cd "${srcdir}/${_upstream_pkgname}-${pkgver}/"
+ python setup.py install --root="${pkgdir}"
+ install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}