mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/chrony: Updated for version 2.4.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
a641fe15c4
commit
54a9409f82
3 changed files with 13 additions and 13 deletions
|
@ -7,6 +7,6 @@ server for other computers.
|
|||
See http://chrony.tuxfamily.org/ for more details.
|
||||
|
||||
Note: Because each installation's configuration will differ, the SlackBuild
|
||||
script does not build or install configuration files. See the man pages and
|
||||
the chrony.txt file installed in /usr/doc/chrony-1.29/ (and the contrib and
|
||||
examples directory) for relevant configuration information.
|
||||
script does not build or install configuration files. See the man pages for
|
||||
chronyd and chrony.conf (and the contrib and examples directories) for
|
||||
relevant configuration information.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for Chrony
|
||||
|
||||
# Copyright 2015 Richard Ellis (USA)
|
||||
# Copyright 2015-2016 Richard Ellis (USA)
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,13 +23,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=chrony
|
||||
VERSION=${VERSION:-2.1.1}
|
||||
VERSION=${VERSION:-2.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -67,7 +67,7 @@ find -L . \
|
|||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -88,7 +88,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING INSTALL README NEWS chrony.txt contrib/ examples/ $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING INSTALL README NEWS contrib/ examples/ $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="chrony"
|
||||
VERSION="2.1.1"
|
||||
VERSION="2.4"
|
||||
HOMEPAGE="http://chrony.tuxfamily.org/"
|
||||
DOWNLOAD="http://download.tuxfamily.org/chrony/chrony-2.1.1.tar.gz"
|
||||
MD5SUM="15e470a51ab6e09e65bc0a2fbc5299af"
|
||||
DOWNLOAD="https://download.tuxfamily.org/chrony/chrony-2.4.tar.gz"
|
||||
MD5SUM="d0598aa8a9be8faccef9386f6fc0d5f2"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue