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