diff options
Diffstat (limited to 'misc/weather/weather.SlackBuild')
-rw-r--r-- | misc/weather/weather.SlackBuild | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/misc/weather/weather.SlackBuild b/misc/weather/weather.SlackBuild index a04f805a82..f3e200fe3c 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 |