summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 59348912fe12e137868758d17b691368ab4d1536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=python-stormssh
_module='stormssh'
pkgver=0.7.0
pkgrel=1
pkgdesc="Management commands to ssh config files."
url="http://github.com/emre/storm"
depends=('python-paramiko' 'python-flask' 'python-termcolor')
makedepends=('python-setuptools')
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
sha256sums=('8d034dcd9487fa0d280e0ec855d08420f51d5f9f2249f932e3c12119eaa53453')

build() {
  cd "${srcdir}/${_module}-${pkgver}"
  python setup.py build
}

package() {
  cd "${srcdir}/${_module}-${pkgver}"
  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}