wok-next view ansible/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
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 }