blob: 4376c2caaca5ff892bb212baa27e9ba1418c2a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Contributor: Calimero <calimeroteknik@free.fr>
pkgname=lib_users
pkgver=0.14
pkgrel=1
pkgdesc='Checks /proc for libraries being mapped but marked as deleted'
arch=('any')
url='https://github.com/klausman/lib_users/'
license=('GPL2')
# works with any version of python, you can set this to "python2" or "python3"
_python="python"
depends=("$_python")
source=("https://github.com/klausman/lib_users/archive/refs/tags/v${pkgver}.tar.gz")
md5sums=('264f8a76451174691767ca23d352e3cf')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
"$_python" setup.py build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
"$_python" setup.py install --prefix=/usr --root="${pkgdir}"
install -D -m644 README.md "${pkgdir}/usr/share/doc/lib_users/README.md"
}
|