mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
misc/weather: updated for version 2.0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
05e862b9ec
commit
14ea9bbcbc
2 changed files with 19 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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=""
|
||||
|
|
Loading…
Reference in a new issue