office/hebcal: Updated for version 5.8.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
146a983534
commit
8e7eaf5853
|
@ -1,14 +1,16 @@
|
|||
hebcal - A perpetual Jewish calendar, by Danny Sadinoff
|
||||
|
||||
Prints Hebrew calendar info for Gregorian date range.
|
||||
Holidays, candle lighting times, yahrzeits, weekly parshas etc.
|
||||
Prints Hebrew calendar info for Gregorian date range. Holidays,
|
||||
candle lighting times, yahrzeits, weekly parshas etc.
|
||||
|
||||
Default city is New York. To change this, pass DEFAULT_CITY to the
|
||||
SlackBuild script. Example:
|
||||
Default city for candle lighting times is New York. To change this,
|
||||
pass DEFAULT_CITY to the SlackBuild script. Example:
|
||||
|
||||
DEFAULT_CITY="Washington DC" ./hebcal.SlackBuild
|
||||
|
||||
See c/cities.h for a list of known cities and coordinates.
|
||||
The city information can also be specified at run time. See the man
|
||||
page.
|
||||
|
||||
The city information can also be specified at run time. See README.md.
|
||||
For a list of known cities and coordinates, do
|
||||
|
||||
hebcal info
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=hebcal
|
||||
VERSION=${VERSION:-5.8.0}
|
||||
VERSION=${VERSION:-5.8.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -80,7 +80,7 @@ find -L . \
|
|||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
make clean
|
||||
make all
|
||||
make DEFAULT_CITY="${DEFAULT_CITY:-New York}" all
|
||||
make install DESTDIR=$PKG PREFIX=/usr MANDIR=/man
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
@ -88,7 +88,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r
|
|||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING c/cities.h \
|
||||
AUTHORS COPYING \
|
||||
NEWS.md README.md README_DE.md \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="hebcal"
|
||||
VERSION="5.8.0"
|
||||
VERSION="5.8.2"
|
||||
HOMEPAGE="http://hebcal.github.io/"
|
||||
DOWNLOAD="https://github.com/hebcal/hebcal/archive/v5.8.0/hebcal-5.8.0.tar.gz"
|
||||
MD5SUM="18b0a141f7e294f4c07d5aad5dcd430d"
|
||||
DOWNLOAD="https://github.com/hebcal/hebcal/archive/v5.8.2/hebcal-5.8.2.tar.gz"
|
||||
MD5SUM="3b8d22af1652fee308d5068fc39e3053"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue