wok annotate vrrpd/receipt @ rev 20108

Add vrrpd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 10 22:14:24 2017 +0200 (2017-10-10)
parents
children e4b9963526cc
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@20108 10 WEB_SITE="http://numsys.eu/"
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@20108 13
pascal@20108 14 # Rules to configure and make the package.
pascal@20108 15 compile_rules()
pascal@20108 16 {
pascal@20108 17 make
pascal@20108 18 }
pascal@20108 19
pascal@20108 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20108 21 genpkg_rules()
pascal@20108 22 {
pascal@20108 23 mkdir -p $fs/etc/init.d $fs/usr/sbin $install/usr/share
pascal@20108 24 cp -R $src/doc $install/usr/share
pascal@20108 25 cp $src/vrrpd $src/atropos $fs/usr/sbin
pascal@20108 26 cp -R $src/configs/vrrpd $fs/etc/
pascal@20108 27 ln -s vrrpd/vrrp_on.sh $fs/etc/vrrp.conf
pascal@20108 28 ln -s daemon $fs/etc/init.d/vrrpd
pascal@20108 29 }