summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 099544f23661e1aa7d3841c47b60166d1202be77 (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=1
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
}