wok-next annotate chillispot/receipt @ rev 19661

Updating some build dependencies...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 10 14:31:18 2017 +0200 (2017-03-10)
parents eb8067417980
children 757d032c55c7
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
al@19661 14 BUILD_DEPENDS="gfortran"
al@19661 15
pascal@1325 16 # Rules to configure and make the package.
pascal@1325 17 compile_rules()
pascal@1325 18 {
pascal@1325 19 cd $src
pascal@4201 20 sed -i 's/) defined (/) || defined (/' src/tun.c
pascal@1325 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1325 22 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@15579 23 make && make DESTDIR=$DESTDIR install
pascal@1325 24 }
pascal@1325 25
pascal@1325 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1325 27 genpkg_rules()
pascal@1325 28 {
pascal@1325 29 mkdir -p $fs/usr $fs/etc/init.d $fs/var/lib/chilli/
pascal@15579 30 cp -a $install/usr/sbin $fs/usr
pascal@1325 31 cp $src/doc/chilli.conf $fs/etc
pankso@9697 32 cp $stuff/chilli $fs/etc/init.d
pascal@1325 33 }
pascal@1325 34