mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
08a66c4024
new pkg added to fullfill checkdepends new order file python3.order
18 lines
516 B
Bash
18 lines
516 B
Bash
|
|
pkgname=python2-monotonic
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3"
|
|
arch=('any')
|
|
url='http://pypi.python.org/pypi/monotonic'
|
|
license=('Apache')
|
|
depends=('python2')
|
|
makedepends=('python2-setuptools')
|
|
source=("https://pypi.python.org/packages/source/m/monotonic/monotonic-${pkgver}.tar.gz")
|
|
sha256sums=('47d7d045b3f2a08bffe683d761ef7f9131a2598db1cec7532a06720656cf719d')
|
|
|
|
package() {
|
|
cd monotonic-${pkgver}
|
|
python2 setup.py install --root="${pkgdir}" --optimize=1
|
|
}
|