wok view tazpanel/receipt @ rev 17043

Add mxml
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 19 17:47:01 2014 +0200 (2014-08-19)
parents d8d2133e968b
children 6956f290aa5a
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="1.8.1"
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"
17 BUILD_DEPENDS=""
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/etc/init.d
29 cp -a $install/* $fs
30 sed -i 's/0 4px #ddd, 0 0 0 4px/2px 4px/g' \
31 $fs/var/www/tazpanel/styles/default/style.css
32 # Init script use tazpanel cmdline
33 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel .
34 }
36 # Pre and post install commands for Tazpkg.
37 post_install()
38 {
39 grep -qs tazpanel $1/etc/hosts ||
40 sed -i 's/^127.0.0.1.*/& tazpanel/' $1/etc/hosts
41 }