Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

Commit

Permalink
packaging: archlinux
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Serpieri committed Jan 9, 2018
1 parent b3df322 commit 2dd0772
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions packaging/archlinux/PKGBUILD
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
}

0 comments on commit 2dd0772

Please sign in to comment.