summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f5cf30eb0663d2fb9b1d03c08de33922c3b4be09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Maintainer: atomicfs
pkgname=python-blkinfo
pkgver=0.2.0
pkgrel=2
pkgdesc="A python library to list information about all available or the specified block devices"
arch=('any')
url="https://github.com/grinrag/blkinfo"
license=('GPL3')
depends=('python' 'util-linux')
_pkgname=blkinfo
source=("${pkgname}::git+https://github.com/genalt/${_pkgname}#tag=${pkgver}")
sha256sums=('SKIP')

package() {
        cd "${srcdir}/${pkgname}"
        python setup.py install --root="${pkgdir}" --optimize=1
}