summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cb904375f6238e470bcf2c6e57ef5dc86789a097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Kelsey Maes <kelseymaes at outlook dot com>

pkgname=python2-msrestazure
pkgver=0.4.22
pkgrel=1
pkgdesc="The runtime library \"msrestazure\" for AutoRest generated Python clients."
arch=('any')
url="https://github.com/Azure/msrestazure-for-python"
license=('MIT')
depends=('python2-adal' 'python2-keyring' 'python2-msrest')
makedepends=('python2-setuptools')
source=("https://github.com/Azure/msrestazure-for-python/archive/v${pkgver}.tar.gz")
md5sums=('8c261f80a115940af63422eb6baca268')

build() {
  cd "msrestazure-for-python-$pkgver"
  python2 setup.py build
}

package() {
  cd "msrestazure-for-python-$pkgver"
  python2 setup.py install --root="$pkgdir" --optimize=1
}