wok-next view puppet/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 3b0f581e4ceb
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="puppet"
4 VERSION="6.14.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A system for automating system administration tasks"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="https://puppet.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://downloads.puppetlabs.com/puppet/$TARBALL"
14 BUILD_DEPENDS="ruby-dev ruby-facter"
16 compile_rules()
17 {
18 # 6.14.0 invalid:
19 # --sbindir=/usr/sbin
21 ruby ./install.rb \
22 --destdir=$install \
23 --bindir=/usr/bin \
24 --mandir=/usr/share/man
25 }
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
31 cp -a $install/etc $fs
32 cp -a $install/usr/*bin $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 cd $fs/usr/bin && mv pi puppet-pi
36 DEPENDS="ruby ruby-facter"
37 }