wok view tazpanel/receipt @ rev 19617

Up SliTaz projects: cookutils(863), slitaz-base-files(319), slitaz-boot-scripts(436), slitaz-configs(299), slitaz-tools(1008), ssfs(108), tazbug(94), tazinst(86), tazirc(18), tazlito(445), tazpanel(610), tazpkg(932), tazusb(194), tazweb(174).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 10 14:28:40 2017 +0200 (2017-01-10)
parents 429a73e5062c
children 40d02ae21cb1
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="610"
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 }