mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
Bash
# Contributions from Arch
|
|
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
|
|
# Contributor: Kevin Houdebert <kevin@qwazerty.eu>
|
|
# Contributor: Erhan SAHIN <erhan@ssahin.net>
|
|
|
|
_pkgname=monotonic
|
|
pkgname=('python3-monotonic' 'python2-monotonic')
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
url="https://pypi.python.org/pypi/monotonic"
|
|
license=('Apache')
|
|
arch=('any')
|
|
makedepends=('python3-setuptools' 'python2-setuptools')
|
|
source=("$_pkgname-$pkgver.tar.gz::https://github.com/atdt/monotonic/archive/$pkgver.tar.gz")
|
|
sha512sums=('2ac02b027a41f4635b62508a9a435ffd124d0f0708a93558a6702dc997837e602790ebf6af256434faa15989e9c4ad7d8a27be9fdcf04bb22b451991a7e8cc46')
|
|
|
|
package_python3-monotonic() {
|
|
pkgdesc="An implementation of time.monotonic() for Python 3."
|
|
depends=('python3')
|
|
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
python3 setup.py install --root="$pkgdir" --optimize=1
|
|
}
|
|
|
|
package_python2-monotonic() {
|
|
pkgdesc="An implementation of time.monotonic() for Python 2."
|
|
depends=('python2')
|
|
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
python2 setup.py install --root="$pkgdir" --optimize=1
|
|
}
|