wok view ansible/receipt @ rev 20596

xfi, xfw, cryptkeeper: (not so) dirty hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 16 11:41:49 2018 +0100 (2018-12-16)
parents 11b5e93cb5f2
children f1741e834caf
line source
1 # SliTaz package receipt.
3 PACKAGE="ansible"
4 VERSION="1.5.3"
5 CATEGORY="network"
6 SHORT_DESC="A radically simple configuration-management engine."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.ansible.com/home"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/ansible/ansible/archive/v$VERSION.tar.gz"
12 CONFIG_FILES="/etc/ansible"
14 DEPENDS="python python-jinja2 python-pyyaml ssh"
15 BUILD_DEPENDS="wget python"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py build
21 python setup.py install --root=$DESTDIR
23 cook_pick_manpages $src/docs/man/man1/*.1
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/etc/ansible
30 cp -a $install/* $fs
31 }