wok annotate vrrpd/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents e4b9963526cc
children 5ea0ce1cecc0
rev   line source
pascal@20108 1 # SliTaz package receipt.
pascal@20108 2
pascal@20108 3 PACKAGE="vrrpd"
pascal@20108 4 VERSION="1.15"
pascal@20108 5 CATEGORY="network"
pascal@20108 6 SHORT_DESC="High-availability: Virtual Router Redundancy Protocol daemon."
pascal@20108 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20108 8 LICENSE="GPL2"
pascal@20108 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21506 10 WEB_SITE="https://github.com/fredbcode/Vrrpd/"
pascal@20108 11 WGET_URL="https://github.com/fredbcode/Vrrpd/archive/v$VERSION.tar.gz"
pascal@20108 12 CONFIG_FILES="/etc/vrrpd /etc/vrrp.conf"
pascal@20109 13 TAGS="High availability HA"
pascal@20108 14
pascal@20108 15 # Rules to configure and make the package.
pascal@20108 16 compile_rules()
pascal@20108 17 {
pascal@20108 18 make
pascal@20108 19 }
pascal@20108 20
pascal@20108 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20108 22 genpkg_rules()
pascal@20108 23 {
pascal@20108 24 mkdir -p $fs/etc/init.d $fs/usr/sbin $install/usr/share
pascal@20108 25 cp -R $src/doc $install/usr/share
pascal@20108 26 cp $src/vrrpd $src/atropos $fs/usr/sbin
pascal@20108 27 cp -R $src/configs/vrrpd $fs/etc/
pascal@20108 28 ln -s vrrpd/vrrp_on.sh $fs/etc/vrrp.conf
pascal@20108 29 ln -s daemon $fs/etc/init.d/vrrpd
pascal@20108 30 }