wok-next view ansible/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ansible"
4 VERSION="1.5.3"
5 CATEGORY="network"
6 SHORT_DESC="Radically simple configuration-management engine"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.ansible.com/"
10 HOST_ARCH="any"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/ansible/ansible/archive/v$VERSION.tar.gz"
15 BUILD_DEPENDS="python"
17 compile_rules() {
18 python -B setup.py build &&
19 python -B setup.py install --root=$install || return 1
21 find $install -type f -exec chmod g-w '{}' \; # 664->644, 775->755
23 cook_pick_manpages $src/docs/man/man1/*.1
24 }
26 genpkg_rules() {
27 mkdir -p $fs/etc/ansible
28 cp -a $install/* $fs
29 DEPENDS="python python-jinja2 python-pyyaml ssh"
30 CONFIG_FILES="/etc/ansible"
31 }