summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2630ef5d6805adaa1a2f300173d684e36b23a9be (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
# Maintainer: pallxk <aur at pallxk dot com>

pkgname=python-azure-git
pkgver=latest
pkgrel=2
pkgdesc="Microsoft Azure SDK for Python"
arch=('any')
url="https://github.com/Azure/azure-sdk-for-python"
license=('MIT')
depends=('python-azure-storage' 'python-msrestazure')
makedepends=('git' 'python-setuptools')
provides=('python-azure')
conflicts=('python-azure')
source=("git+https://github.com/Azure/azure-sdk-for-python.git")
md5sums=('SKIP')

build() {
  cd azure-sdk-for-python
  python setup.py build
}

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