summaryrefslogtreecommitdiff
path: root/community/python-psutil
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
committerroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
commite4a5730eb358cb0d78bc022204ddccac068c2bf2 (patch)
tree8dc9d2ac6b1313cb68be1a6c8b51500397f8b225 /community/python-psutil
parent299e917c17619f800f0c21cf43209065b608223f (diff)
Sat Feb 25 23:15:06 UTC 2012
Diffstat (limited to 'community/python-psutil')
-rw-r--r--community/python-psutil/PKGBUILD46
1 files changed, 46 insertions, 0 deletions
diff --git a/community/python-psutil/PKGBUILD b/community/python-psutil/PKGBUILD
new file mode 100644
index 000000000..a062110dc
--- /dev/null
+++ b/community/python-psutil/PKGBUILD
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 66402 2012-02-24 13:09:02Z seblu $
+# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=0.4.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/psutil/'
+license=('custom: BSD')
+makedepends=('python' 'python-distribute' 'python2' 'python2-distribute')
+source=("https://psutil.googlecode.com/files/psutil-$pkgver.tar.gz")
+sha1sums=('2705862e00280a7fa76cfb687dbd61623d5e236e')
+
+build() {
+ 'cp' -a psutil-$pkgver psutil2-$pkgver
+ # build python
+ cd psutil-$pkgver
+ python setup.py build
+
+ cd ../psutil2-$pkgver
+ # change python interpreter
+ find -name '*.py' -exec \
+ sed -i '1s,^#!/usr/bin/env python$,#!/usr/bin/python2,' {} \; -print
+ python2 setup.py build
+}
+
+package_python-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python'
+ depends=('glibc' 'python')
+
+ cd psutil-$pkgver
+ python setup.py install --root="$pkgdir"
+ install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python 2'
+ depends=('glibc' 'python2')
+
+ cd psutil2-$pkgver
+ python2 setup.py install --root="$pkgdir"
+ install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 ft=sh et: