24 lines
697 B
Bash
24 lines
697 B
Bash
# Template file for 'ansible'
|
|
pkgname=ansible
|
|
version=1.9.3
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools"
|
|
depends="${hostmakedepends} python-crypto python-Jinja2 python-paramiko python-yaml"
|
|
pycompile_module="ansible"
|
|
short_desc="Simple deployment, configuration management and execution framework"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="http://www.ansible.com"
|
|
distfiles="http://releases.ansible.com/ansible/${pkgname}-${version}.tar.gz"
|
|
checksum=2594f642fd800056a427c1026410dc6ed8dfa7c0033f5c3d187abdb2b0d4eeed
|
|
|
|
post_install() {
|
|
for f in examples/*; do
|
|
vsconf ${f}
|
|
done
|
|
for m in docs/man/man1/*.1; do
|
|
vman ${m}
|
|
done
|
|
}
|