21e23b34d2
closes #1069
42 lines
1 KiB
Bash
42 lines
1 KiB
Bash
#Maintainer: Michel Blanc <mblanc@erasme.org>
|
|
pkgname=ansible-git
|
|
pkgver=20120419
|
|
pkgrel=1
|
|
pkgdesc="A radically simple deployment, model-driven configuration management, and command execution framework"
|
|
arch=('any')
|
|
url="https://github.com/ansible/ansible"
|
|
license=('GPL3')
|
|
depends=('python2' 'python2-yaml' 'python-paramiko>=1.7.7' 'python2-jinja' 'python-simplejson')
|
|
makedepends=('git' 'asciidoc' 'fakeroot')
|
|
|
|
_gitroot="https://github.com/ansible/ansible"
|
|
_gitname="ansible"
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
msg "Connecting to GIT server...."
|
|
|
|
if [ -d $_gitname ] ; then
|
|
cd $_gitname && git pull origin
|
|
msg "The local files are updated."
|
|
else
|
|
git clone $_gitroot $_gitname
|
|
fi
|
|
|
|
msg "GIT checkout done or server timeout"
|
|
|
|
cd "$srcdir/$_gitname"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$_gitname"
|
|
|
|
mkdir -p ${pkgdir}/usr/share/ansible
|
|
cp ./library/* ${pkgdir}/usr/share/ansible/
|
|
python setup.py install -O1 --root=${pkgdir}
|
|
|
|
install docs/man/man1/*.1 ${pkgdir}/usr/share/man/man1/
|
|
|
|
gzip -9 ${pkgdir}/usr/share/man/man1/*.1
|
|
}
|