wok-next view wifidog/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 10df65db91ad
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="wifidog"
4 VERSION="1.1.5"
5 CATEGORY="network"
6 SHORT_DESC="Captive portal solution for hotspot, gateway side"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://dev.wifidog.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make DESTDIR=$install install || return 1
24 install -Dm644 $src/wifidog.conf $install/etc/wifidog.conf
25 install -Dm755 $src/scripts/init.d/wifidog $install/etc/init.d/wifidog
26 }
28 genpkg_rules() {
29 copy @std
30 CONFIG_FILES="/etc/wifidog.conf"
31 }