wok view tazinst/receipt @ rev 14701

monitorix: update /etc/monitorix.conf (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 07 18:28:08 2013 +0200 (2013-06-07)
parents 957a43e24682
children 10e6c72b2c15
line source
1 # SliTaz package receipt.
3 PACKAGE="tazinst"
4 VERSION="3.90"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz installer."
7 MAINTAINER="domcox@slitaz.org"
8 DEPENDS="util-linux-blkid lzma parted"
9 SUGGESTED="syslinux syslinux-extra syslinux-modules grub4dos-linux"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.slitaz.org/"
12 WGET_URL="http://hg.slitaz.org/tazinst/archive/$VERSION.tar.bz2"
13 TAGS="slitaz"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src && make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 #
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/etc $fs
28 cp -a $install/usr/sbin $fs/usr
29 cp -a $install/usr/share/doc $fs/usr/share
30 cp -a $install/usr/share/locale $fs/usr/share
31 chmod 0644 $fs/usr/share/locale/*/*/*.mo
32 chown -R root.root $fs
33 # remove tazinst-gui locales
34 cd $fs/usr/share/locale
35 for lang in *; do
36 rm -f $lang/*/installer.mo
37 done
38 }