diff options
Diffstat (limited to 'pcr/python-monotonic')
-rw-r--r-- | pcr/python-monotonic/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/python-monotonic/PKGBUILD b/pcr/python-monotonic/PKGBUILD new file mode 100644 index 000000000..1dd0ab98b --- /dev/null +++ b/pcr/python-monotonic/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer (Arch): Kevin Houdebert <kevin@qwazerty.eu> +# Contributor (Arch): Erhan SAHIN <erhan@ssahin.net> +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> + +pkgname=python-monotonic +pkgver=0.3 +pkgrel=1 +pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3" +url="https://pypi.python.org/pypi/monotonic" +license=('Apache') +arch=('i686' 'x86_64') +depends=('python') +makedepends=('python-setuptools') +source=("https://pypi.python.org/packages/source/m/monotonic/monotonic-$pkgver.tar.gz") +md5sums=('4d055924b13474f5ac65385b937124fe') + +package() { + cd $srcdir/monotonic-$pkgver + python setup.py install --root=$pkgdir --optimize=1 +} |