diff options
author | stormtracknole <stormtracknole@gmail.com> | 2013-12-31 06:31:51 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-07 11:13:59 -0600 |
commit | 14ea9bbcbcfa131e7ce6dd0bb8b66041fa0f2cea (patch) | |
tree | ba6b0e039281ee438535fa06800abcbef19e6d3a /misc/weather | |
parent | 05e862b9ec3f103380307cc9f3e9b6c0ab96fd34 (diff) |
misc/weather: updated for version 2.0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc/weather')
-rw-r--r-- | misc/weather/weather.SlackBuild | 23 | ||||
-rw-r--r-- | misc/weather/weather.info | 6 |
2 files changed, 19 insertions, 10 deletions
diff --git a/misc/weather/weather.SlackBuild b/misc/weather/weather.SlackBuild index a04f805a82b0..f3e200fe3c0f 100644 --- a/misc/weather/weather.SlackBuild +++ b/misc/weather/weather.SlackBuild @@ -4,10 +4,12 @@ # Written by stormtracknole - stormtracknole@gmail.com +# * Updated to version 2.0 12/30/13 + PRGNAM=weather -VERSION=${VERSION:-1.5} -BUILD=${BUILD:-2} +VERSION=${VERSION:-2.0} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -34,22 +36,29 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; mkdir -p $PKG/usr/bin cp -a weather $PKG/usr/bin/weather.weather ( cd $PKG/usr/bin ; ln -s weather.weather weather ) mkdir -p $PKG/etc +cat << EOF >> weatherrc +cachedir = ~/.weather +setpath = /usr/share/weather-util +EOF cp -a weatherrc $PKG/etc/weatherrc.new +mkdir -p $PKG/usr/share/weather-util +cp -a {airports,places,stations,zctas,zones} $PKG/usr/share/weather-util + mkdir -p $PKG/usr/man/man{1,5} gzip -9c weather.1 > $PKG/usr/man/man1/weather.1.gz gzip -9c weatherrc.5 > $PKG/usr/man/man5/weatherrc.5.gz diff --git a/misc/weather/weather.info b/misc/weather/weather.info index c19c8b6715f1..92de04658bde 100644 --- a/misc/weather/weather.info +++ b/misc/weather/weather.info @@ -1,8 +1,8 @@ PRGNAM="weather" -VERSION="1.5" +VERSION="2.0" HOMEPAGE="http://fungi.yuggoth.org/weather/" -DOWNLOAD="http://fungi.yuggoth.org/weather/src/weather-1.5.tar.gz" -MD5SUM="87c7f59bd34a2f62e38a11b81160cd6b" +DOWNLOAD="http://fungi.yuggoth.org/weather/src/weather-2.0.tar.xz" +MD5SUM="7994bb65d914b3b3659086978f939d0c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |