wok view ansible/receipt @ rev 20007

Add: description.txt and links revision.
author Leonardo Laporte <hackdorte@yandex.com>
date Wed Aug 02 12:34:36 2017 -0300 (2017-08-02)
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 }