summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f387639a91f4fc6e086f8cac5776a04d654f0d72 (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
29
30
31
32
33
34
35
# Maintainer: A. Richard <dubitae@gmail.com>
pkgname=python2-gpsoauth
_pipyname=gpsoauth
pkgver=0.2.0
pkgrel=1
pkgdesc="client library for Google Play Services OAuth"
arch=('any')
url="https://github.com/simon-weber/gpsoauth"
license=('BSD')
groups=()
depends=(
    'python2'
    'python2-requests>=2.7'
    'python2-crypto>=2.6'
    'python2-pyasn1>=0.1.7'
    'python2-pyopenssl>=0.15'
    'python2-ndg-httpsclient>=0.4'
)
makedepends=('python2-setuptools')
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
changelog=
source=("https://pypi.python.org/packages/source/g/$_pipyname/$_pipyname-$pkgver.tar.gz")
noextract=()
md5sums=('549da992b843cb3bc5973145104cd77e')

package() {
    cd "$srcdir/$_pipyname-$pkgver"
    python2 setup.py install --root="$pkgdir" --optimize=1
}