wok view ntp/receipt @ rev 3124

Up: ntp (4.2.4p7) [security fix]
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 19 14:56:15 2009 +0200 (2009-05-19)
parents 7d4197e5834d
children 870e9cbd99f2
line source
1 # SliTaz package receipt.
3 PACKAGE="ntp"
4 VERSION="4.2.4p7"
5 CATEGORY="network"
6 SHORT_DESC="Network Time Protocol daemon."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.ntp.org/"
10 WGET_URL="http://archive.ntp.org/ntp4/$TARBALL"
11 DEPENDS="libcrypto readline"
12 CONFIG_FILES="/etc/ntp.conf"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --sysconfdir=/etc --localstatedir=/var \
20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr $fs/etc/init.d
28 cp -a $_pkg/usr/bin $fs/usr
29 cp stuff/ntp $fs/etc/init.d
30 cat > $fs/etc/ntp.conf <<EOT
31 server fr.pool.ntp.org
32 EOT
33 }