diff options
author | Graham Orange <gorange40@gmail.com> | 2015-11-05 00:28:30 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-05 00:44:58 +0700 |
commit | 4fecfb38f80b6b9ed817cc73f60f0b21b7048160 (patch) | |
tree | cb5cc8f2998364639f305679ef64667cd6b92ec0 /system/uptimed/uptimed.SlackBuild | |
parent | a67738dd229da17acb8674fe8943c28fb33aa869 (diff) |
system/uptimed: Updated for version 0.4.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/uptimed/uptimed.SlackBuild')
-rw-r--r-- | system/uptimed/uptimed.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/system/uptimed/uptimed.SlackBuild b/system/uptimed/uptimed.SlackBuild index efb44086b638..bc9384b20475 100644 --- a/system/uptimed/uptimed.SlackBuild +++ b/system/uptimed/uptimed.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh -e -# Graham Orange v0.17 2014-04-09 +# Graham Orange v0.18 2015-11-02 -# Copyright 2014 Graham Orange, USA +# Copyright 2015 Graham Orange, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,7 +22,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=uptimed -VERSION=${VERSION:-0.3.17} +VERSION=${VERSION:-0.4.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,7 +34,7 @@ if [ -z "$ARCH" ]; then esac fi -DOCS="AUTHORS COPYING CREDITS ChangeLog INSTALL* NEWS README TODO" +DOCS="AUTHORS COPYING CREDITS ChangeLog INSTALL* NEWS README* TODO" CWD=$(pwd) TMP=${TMP:-/tmp/SBo} @@ -61,15 +61,17 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +tar xvf $CWD/v$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . 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 {} \; +# Generate the configure file. +./autogen.sh CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |