mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
pkgbase=python-psutil
|
|
pkgname=('python3-psutil' 'python2-psutil')
|
|
pkgver=4.1.0
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
url='https://github.com/giampaolo/psutil'
|
|
license=('custom: BSD')
|
|
makedepends=('python3' 'python3-setuptools' 'python2' 'python2-setuptools')
|
|
source=("https://pypi.python.org/packages/source/p/psutil/psutil-${pkgver}.tar.gz")
|
|
sha1sums=('c1f4e1581e5b6aaee549093b624c78e3c3a1e1ce')
|
|
|
|
build() {
|
|
cd psutil-${pkgver}
|
|
|
|
msg2 python3
|
|
python3 setup.py build --build-lib=build/python3
|
|
|
|
msg2 python2
|
|
python2 setup.py build --build-lib=build/python2
|
|
find build/python2 -type f -exec \
|
|
sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
|
|
}
|
|
|
|
package_python3-psutil() {
|
|
pkgdesc='A cross-platform process and system utilities module for Python'
|
|
depends=('glibc' 'python3')
|
|
|
|
cd psutil-${pkgver}
|
|
python3 setup.py build --build-lib=build/python3 \
|
|
install --root="${pkgdir}" --optimize=1
|
|
install -D -m 644 LICENSE "${pkgdir}/"usr/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
|
|
package_python2-psutil() {
|
|
pkgdesc='A cross-platform process and system utilities module for Python2'
|
|
depends=('glibc' 'python2')
|
|
|
|
cd psutil-${pkgver}
|
|
python2 setup.py build --build-lib=build/python2 \
|
|
install --root="${pkgdir}" --optimize=1
|
|
install -D -m 644 LICENSE "${pkgdir}/"usr/share/licenses/${pkgname}/LICENSE
|
|
}
|