wok view tazpanel/receipt @ rev 18123

Add xorg-dri3proto
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 11 10:44:32 2015 +0200 (2015-06-11)
parents b49911fcbaba
children 7c70bebedf4f
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="501"
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 VERSION=$VERSION 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 # Init script use tazpanel cmdline
31 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel .
33 cd $fs/var/www/tazpanel; rm test.cgi locale.cgi powersaving.cgi
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
42 # Do we need TazPanel restart? It freezes when updating using web interface.
43 #[ -z "$1" ] && tazpanel restart
44 }