diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-02 12:47:06 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-02 16:40:56 +0100 |
commit | f42272aaa280956d77891d40039c9ba67bfb8882 (patch) | |
tree | ad828671dc0139f23800574fe7a2ba88539b3ea4 /python-msrest | |
parent | 33271ea04d8b2dd02000aefb477bd207475b441a (diff) | |
download | archlinuxewe-f42272aaa280956d77891d40039c9ba67bfb8882.tar.xz |
try to fix azure-cli packages
Diffstat (limited to 'python-msrest')
-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 +} + |