wok-next annotate tazpanel/receipt @ rev 18187
Up lessfs (1.7.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 08 11:52:12 2015 +0200 (2015-07-08) |
parents | b49911fcbaba |
children | 7c70bebedf4f |
rev | line source |
---|---|
pankso@9632 | 1 # SliTaz package receipt. |
pankso@9632 | 2 |
pankso@9632 | 3 PACKAGE="tazpanel" |
al@18119 | 4 VERSION="501" |
pankso@9632 | 5 CATEGORY="system-tools" |
pankso@9632 | 6 SHORT_DESC="SliTaz administration and configuration panel." |
pankso@9632 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15022 | 8 LICENSE="BSD" |
pankso@9632 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@9632 | 10 WEB_SITE="http://www.slitaz.org/" |
Christian@12110 | 11 WGET_URL="http://hg.slitaz.org/tazpanel/archive/$VERSION.tar.gz" |
pascal@10343 | 12 CONFIG_FILES="/etc/slitaz/tazpanel.conf /etc/slitaz/httpd.conf" |
pankso@16037 | 13 HOST_ARCH="i486 arm" |
pankso@9632 | 14 |
pankso@16040 | 15 SUGGESTED="tazinst-gui tazinst" |
pankso@16040 | 16 DEPENDS="busybox" |
pankso@16040 | 17 BUILD_DEPENDS="" |
pankso@9632 | 18 |
pankso@9632 | 19 # Rules to configure and make the package. |
pankso@9632 | 20 compile_rules() |
pankso@9632 | 21 { |
pascal@17427 | 22 make && make DESTDIR=$DESTDIR VERSION=$VERSION install |
pankso@9632 | 23 } |
pankso@9632 | 24 |
pankso@9632 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@9632 | 26 genpkg_rules() |
pankso@9632 | 27 { |
pankso@9632 | 28 mkdir -p $fs/etc/init.d |
pankso@10842 | 29 cp -a $install/* $fs |
pankso@9632 | 30 # Init script use tazpanel cmdline |
pankso@9632 | 31 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel . |
al@18064 | 32 |
al@18119 | 33 cd $fs/var/www/tazpanel; rm test.cgi locale.cgi powersaving.cgi |
pankso@9632 | 34 } |
pascal@11360 | 35 |
pascal@11360 | 36 # Pre and post install commands for Tazpkg. |
pascal@11360 | 37 post_install() |
pascal@11360 | 38 { |
pascal@11360 | 39 grep -qs tazpanel $1/etc/hosts || |
pascal@11360 | 40 sed -i 's/^127.0.0.1.*/& tazpanel/' $1/etc/hosts |
al@17910 | 41 |
al@17977 | 42 # Do we need TazPanel restart? It freezes when updating using web interface. |
al@17977 | 43 #[ -z "$1" ] && tazpanel restart |
pascal@11360 | 44 } |