Add salt PKGBUILD

This commit is contained in:
Thomas S Hatch 2011-02-27 16:46:05 -07:00
parent 4103384be8
commit f9b058edb0

23
PKGBUILD Normal file
View File

@ -0,0 +1,23 @@
# Maintainer: Thomas S Hatch <thatch45@gmail.com>
pkgname=salt
pkgver=0.1
pkgrel=1
pkgdesc="A distributed remote execution system"
arch=(any)
url="https://github.com/thatch45/salt"
license=("APACHE")
depends=('python2'
'pyzmq'
'python-m2crypto')
makedepends=()
optdepends=()
options=()
source=("$pkgname-$pkgver.tar.gz")
md5sums=('44957d7faabbe6dece7d8ddee5ac1af9')
package() {
cd $srcdir/$pkgname-$pkgver
python2 setup.py install --root=$pkgdir/ --optimize=1
}