This repository has been archived by the owner on Dec 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Serpieri
committed
Jan 9, 2018
1 parent
b3df322
commit 2dd0772
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Maintainer: mickybart <mickybart at pygoscelis dot org> | ||
|
||
pkgname=('python-atlasbroker') | ||
pkgver='1.0.0' | ||
pkgrel=1 | ||
pkgdesc="Atlas Broker for Kubernetes Service Catalog" | ||
url="http://github.com/mickybart/python-atlasbroker" | ||
depends=('python' 'python-atlasapi' 'python-pwgen' 'python-pymongo' 'python-openbrokerapi' 'python-flask') | ||
makedepends=('python-setuptools') | ||
license=('Apache') | ||
arch=('any') | ||
source=("${pkgname}::git+https://github.com/mickybart/python-atlasbroker#tag=${pkgver}") | ||
md5sums=('SKIP') | ||
|
||
build() { | ||
cd "${srcdir}/${pkgname}" | ||
python setup.py build | ||
} | ||
|
||
package() { | ||
depends+=() | ||
cd "${srcdir}/${pkgname}" | ||
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build | ||
} | ||
|