wok annotate chillispot/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents a1644dbcf632
children 83b97236db32
rev   line source
pascal@1325 1 # SliTaz package receipt.
pascal@1325 2
pascal@1325 3 PACKAGE="chillispot"
pascal@1325 4 VERSION="1.1.0"
pascal@1325 5 CATEGORY="network"
pascal@1325 6 SHORT_DESC="Captive portal or wireless LAN access point controller."
pascal@1325 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
pascal@1325 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1325 10 WEB_SITE="http://www.chillispot.info/"
pascal@1325 11 WGET_URL="${WEB_SITE}download/$TARBALL"
pascal@1325 12 CONFIG_FILES="/etc/chilli.conf"
pascal@1325 13
pascal@1325 14 # Rules to configure and make the package.
pascal@1325 15 compile_rules()
pascal@1325 16 {
pascal@1325 17 cd $src
pascal@4201 18 sed -i 's/) defined (/) || defined (/' src/tun.c
pascal@1325 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1325 20 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@15579 21 make && make DESTDIR=$DESTDIR install
pascal@1325 22 }
pascal@1325 23
pascal@1325 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1325 25 genpkg_rules()
pascal@1325 26 {
pascal@1325 27 mkdir -p $fs/usr $fs/etc/init.d $fs/var/lib/chilli/
pascal@15579 28 cp -a $install/usr/sbin $fs/usr
pascal@1325 29 cp $src/doc/chilli.conf $fs/etc
pankso@9697 30 cp $stuff/chilli $fs/etc/init.d
pascal@1325 31 }
pascal@1325 32