mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-procfs
|
|
_pkgname=procfs
|
|
pkgver=0.1.2
|
|
pkgrel=0
|
|
pkgdesc="A Python API for the Linux /proc virtual filesystem"
|
|
url="https://github.com/pmuller/procfs"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="6ca053f33361eef169a5f15c09df76d6 procfs-0.1.2.tar.gz"
|
|
sha256sums="0ad88de8855c793906954129a2f3536fc14445ac959bdaee6b06b49e1a73fb8b procfs-0.1.2.tar.gz"
|
|
sha512sums="8552af4018aa3ea376f48c004e7da106fab953bdfc1606f9fd63063ec2baf8d4e3e4c9d46afa17392ca2b589f705f236967181cff2d392039e655cafbc424cb5 procfs-0.1.2.tar.gz"
|