blob: 568e5621d5efa757dd1aa09f95eb8b51b0b9a167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Yaron de Leeuw < me@jarondl.net >
# Maintained at : https://github.com/jarondl/aur-pkgbuilds-jarondl
# Contributor: Shanto <shanto@hotmail.com>
pkgname=python2-apscheduler
_pkgname=APScheduler
pkgver=3.2.0
pkgrel=1
pkgdesc="In-process task scheduler with Cron-like capabilities"
arch=('any')
url="https://pypi.python.org/pypi/APScheduler"
license=('MIT')
depends=('python2'
'python2-pytz'
'python2-tzlocal'
'python2-futures'
'python2-funcsigs'
'python2-six'
'python2-setuptools'
)
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('5baa1195ba711868fae257612cf80372ff1124014ca896884bf132f75636f638')
package() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --root="$pkgdir/" --optimize=1
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|