blob: e97ece6f1c121fc97c9fd3ccee9bd61e86b9fa85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: lesebas <sebastiendotdelignyatgmail.com>
pkgname=python-hurry-filesize
pkgver=0.9
pkgrel=7
pkgdesc="A simple Python library for human readable file sizes (or anything sized in bytes)."
arch=('any')
url="http://pypi.python.org/pypi/hurry.filesize/"
license=('GPL')
depends=('python')
makedepends=('python-pip' 'python-wheel')
source=()
package() {
PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps hurry.filesize
}
|