summaryrefslogtreecommitdiff
path: root/community/python2-pytables
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-09-13 00:04:38 +0000
committerroot <root@rshg054.dnsready.net>2012-09-13 00:04:38 +0000
commit843685ce9dd76d37a4c7b0230eacb6d26bdf30dd (patch)
tree9151f782b8f347cf28e0f398341441d659f41f4a /community/python2-pytables
parent21c375ba65c4730e25cd0b135aff7811bf28c77a (diff)
Thu Sep 13 00:04:37 UTC 2012
Diffstat (limited to 'community/python2-pytables')
-rw-r--r--community/python2-pytables/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/python2-pytables/PKGBUILD b/community/python2-pytables/PKGBUILD
new file mode 100644
index 000000000..082ebc1ba
--- /dev/null
+++ b/community/python2-pytables/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 76101 2012-09-11 10:23:14Z aginiewicz $
+# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
+# Contributor: Sebastien Binet <binet@cern.ch>
+
+pkgname=python2-pytables
+pkgver=2.4.0
+pkgrel=1
+arch=("i686" "x86_64")
+pkgdesc="PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data"
+url="http://www.pytables.org"
+license=("BSD")
+depends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2')
+provides=('python-pytables') # temporary due to package rename
+source=("http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz")
+md5sums=('527ad046f92c9197ca96626b725f71f8')
+
+build() {
+ cd "$srcdir"/tables-${pkgver}
+ python2 setup.py build
+}
+
+package() {
+ cd "$srcdir"/tables-${pkgver}
+ python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+ install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+