Created
January 1, 2011 05:38
-
-
Save kuno/761579 to your computer and use it in GitHub Desktop.
python-fabric 0.9.3 PKGBUILD
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
# Maintainer: James Pearson <[email protected]> | |
pkgname=python-fabric | |
pkgver=0.9.3 | |
pkgrel=1 | |
pkgdesc="A Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol." | |
url="http://fabfile.org/" | |
license=('BSD') | |
arch=('any') | |
depends=('pycrypto' 'python2>=2.7' 'python-paramiko') | |
makedepends=('python2-distribute') | |
source=("http://code.fabfile.org/projects/fabric/files/Fabric-$pkgver.tar.gz") | |
build() { | |
cd $srcdir/Fabric-$pkgver | |
python2 setup.py install --root=$pkgdir | |
install -D -m644 README ${pkgdir}/usr/share/doc/${pkgname}/README | |
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE | |
} | |
md5sums=('e83dfd6c6889292e24ca7e4eb1ab371a') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment