wok view ntpclient/receipt @ rev 12634

e2fsprogs, fsarchiver, laptop-mode-tools, nfs-utils: s/util-linux-ng/util-linux/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 29 13:18:44 2012 +0200 (2012-04-29)
parents a1c1d35d9f92
children 749ffdd335d7
line source
1 # SliTaz package receipt.
3 PACKAGE="ntpclient"
4 VERSION="2007_365"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tiny NTP Client"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="${PACKAGE}_${VERSION}.tar.gz"
10 WEB_SITE="http://www.busybox.net/tinyutils.html"
11 WGET_URL="http://doolittle.icarus.com/ntpclient/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
18 # disable debug
19 sed -i 's/\(^CFLAGS += -DENABLE_DEBUG\)/#\1/' Makefile
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/ntpclient $fs/usr/bin
28 }
30 post_install()
31 {
32 [ -n "$1" ] && return
33 echo ""
34 echo -n "Do you want to run ntpclient in automatic mode (y/N): "; read anser
35 if [ "$anser" == "y" ]; then
36 srv="fr.pool.ntp.org"
37 echo ""
38 echo -n "Setting up crontab for ntpclient..."
39 crontab -l 2> /dev/null | grep -q '/usr/bin/ntpclient -s -h' ||
40 crontab - -u root << EOT
41 $(crontab -l 2> /dev/null)
42 0 0 * * * /usr/bin/ntpclient -s -h $srv
43 EOT
44 status
45 else
46 echo "Don't forget to run ntpclient -s -h <NTP Server>"
47 fi
48 }