diff options
Diffstat (limited to 'python-msrest/PKGBUILD')
-rw-r--r-- | python-msrest/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/python-msrest/PKGBUILD b/python-msrest/PKGBUILD new file mode 100644 index 000000000..17b1c37a1 --- /dev/null +++ b/python-msrest/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Erich Eckner +# Contributor: Lukas Zimmermann <luk.zim91 at gmail dot com> +# Contributor: Kelsey Maes <kelseymaes at outlook dot com> +pkgname=python-msrest +pkgver=0.6.21 +pkgrel=1 +pkgdesc='The runtime library for AutoRest generated Python clients.' +arch=('any') +url="https://github.com/Azure/msrest-for-python" +license=('MIT') +depends=('python-isodate' 'python-requests-oauthlib') +makedepends=('python-setuptools') +source=("https://github.com/Azure/msrest-for-python/archive/v${pkgver}.tar.gz") +sha256sums=('a05696317c836d073597510ca875e756433406fa38f4fb360527d91a7b753442') + +build() { + cd "msrest-for-python-${pkgver}" + python setup.py build +} + +package() { + cd "msrest-for-python-${pkgver}" + python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +} + |