blob: 7103dfeffd6fd4657283f5a5f1af5c1ba2076c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Philipp Schmitt <philipp@schmitt.co>
# GitHub: https://github.com/pschmitt/aur-python2-flask-cors
pkgname=python-apns-clerk
_pkgname=apns-clerk
pkgver=0.2.0
pkgrel=1
pkgdesc="Python client for Apple Push Notification service (APNs)"
arch=('any')
url='https://pypi.python.org/pypi/apns-clerk'
license=('')
depends=('python')
options=(!emptydirs)
source=("https://pypi.python.org/packages/source/a/$_pkgname/$_pkgname-$pkgver.tar.gz")
md5sums=('f7c302305552ae6bf134f776dafa139c')
package() {
cd "$srcdir/$_pkgname-$pkgver"
python3 setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et:
|