wok view tazpanel/receipt @ rev 20119

slitaz-base-files (333), slitaz-boot-scripts (445), slitaz-configs (313), slitaz-tools (1025), tazbug (152), tazinst (93), tazirc (22), tazlito (469), tazpanel (617), tazweb (208): revision of german messages
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 10:45:51 2017 +0200 (2017-10-14)
parents 40d02ae21cb1
children 77b07b7aa3e7
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="617"
5 CATEGORY="system-tools"
6 SHORT_DESC="SliTaz administration and configuration panel."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://hg.slitaz.org/tazpanel/archive/$VERSION.tar.gz"
12 CONFIG_FILES="/etc/slitaz/tazpanel.conf /etc/slitaz/httpd.conf"
13 HOST_ARCH="i486 arm"
15 SUGGESTED="tazinst-gui tazinst"
16 DEPENDS="busybox gettext-base sundown"
17 BUILD_DEPENDS="gettext jsmin tidy-html5"
18 SIBLINGS="tazpanel-extra"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 make && make DESTDIR=$DESTDIR VERSION=$VERSION install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/etc/init.d
30 cp -a $install/* $fs
31 # Init script use tazpanel cmdline
32 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel .
33 }
35 # Pre and post install commands for Tazpkg.
36 post_install()
37 {
38 rm -f "$1"/var/cache/tazpanel/* 2> /dev/null
39 grep -qs tazpanel "$1"/etc/hosts ||
40 sed -i 's/^127.0.0.1.*/& tazpanel/' "$1"/etc/hosts
42 # Do we need TazPanel restart? It freezes when updating using web interface.
43 #[ -z "$1" ] && tazpanel restart
44 }