wok view ndppd/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents cd7c90022605
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="ndppd"
4 VERSION="0.2.5"
5 CATEGORY="network"
6 TAGS="ipv6"
7 SHORT_DESC="NDP Proxy Daemon."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://github.com/DanielAdolfsson/ndppd"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 DEPENDS="gcc-lib-base"
16 CONFIG_FILES="/etc/ndppd.conf"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's|/usr/local|/usr|' Makefile
23 make all &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/etc $fs/usr
32 touch $fs/etc/ndppd.conf
33 cp -a $install/usr/sbin $fs/usr
34 }