wok view tazpanel/receipt @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents 57ea1afa4f79
children 265516f002cf
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="1.8"
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 # Init script use tazpanel cmdline
31 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel .
32 }
34 # Pre and post install commands for Tazpkg.
35 post_install()
36 {
37 grep -qs tazpanel $1/etc/hosts ||
38 sed -i 's/^127.0.0.1.*/& tazpanel/' $1/etc/hosts
39 }