wok view ansible/receipt @ rev 22506

updated asterisk-sound-fr (1.4.16 -> 1.6.1)
author Hans-G?nter Theisgen
date Wed Jan 01 13:38:34 2020 +0100 (2020-01-01)
parents 03509d491272
children 5e0488ebbbb5
line source
1 # SliTaz package receipt.
3 PACKAGE="ansible"
4 VERSION="2.9.2"
5 CATEGORY="network"
6 SHORT_DESC="A radically simple configuration-management engine."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.ansible.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="python python-jinja2 python-pyyaml ssh"
15 BUILD_DEPENDS="python python-setuptools"
17 CONFIG_FILES="/etc/ansible"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 python setup.py build &&
23 python setup.py install --root=$DESTDIR
25 # 2.9.2: no longer available
26 # cook_pick_manpages $src/docs/man/man1/*.1
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/etc/ansible
33 cp -a $install/* $fs
34 }