mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
desktop/wmclock: Updated for version 1.0.16.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
7cf929116b
commit
00ee73279b
2 changed files with 21 additions and 20 deletions
|
@ -6,6 +6,9 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20231118 bkw: update for v1.0.16. not really necessary, but I'm tired
|
||||
# of repology claiming this is outdated.
|
||||
|
||||
# 20151110 bkw:
|
||||
# - finally got around to upgrading to 1.0.14.
|
||||
# - added default language in slack-desc.
|
||||
|
@ -13,7 +16,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=wmclock
|
||||
VERSION=${VERSION:-1.0.14}
|
||||
VERSION=${VERSION:-1.0.16}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -37,16 +40,12 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -55,26 +54,28 @@ rm -rf $PKG
|
|||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
mkdir -p $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
tar xvf $CWD/${PRGNAM}_$VERSION.orig.tar.gz --strip-components=1
|
||||
chown -R root:root .
|
||||
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||
|
||||
# Set the default language with LANGUAGE=<language> in the environment
|
||||
autoreconf -if
|
||||
|
||||
# Set the default language with LANGUAGE=<language> in the environment.
|
||||
# Default is english. It's still possible to display in other
|
||||
# languages using the -monthxpm and -weekdayxpm options.
|
||||
|
||||
LANGUAGE=${LANGUAGE:-english}
|
||||
./configure --lang $LANGUAGE
|
||||
|
||||
make CDEBUGFLAGS="$SLKCFLAGS" PREFIX=/usr
|
||||
mkdir -p $PKG/usr/bin
|
||||
install -s -m0755 -o root -g root $PRGNAM $PKG/usr/bin
|
||||
make install.share DESTDIR=$PKG PREFIX=/usr
|
||||
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
gzip -9c $PRGNAM.man > $PKG/usr/man/man1/$PRGNAM.1.gz
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--with-lang=$LANGUAGE \
|
||||
--prefix=/usr \
|
||||
--mandir=/usr/man
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
gzip -9 $PKG/usr/man/man1/$PRGNAM.1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp README COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="wmclock"
|
||||
VERSION="1.0.14"
|
||||
HOMEPAGE="https://web.archive.org/web/20171115102002/http://www.bluestop.org/wmclock/"
|
||||
DOWNLOAD="https://slackware.uk/~urchlay/src/wmclock-1.0.14.tar.gz"
|
||||
MD5SUM="15a83f45e2baabec26b22a2153aa2417"
|
||||
VERSION="1.0.16"
|
||||
HOMEPAGE="https://packages.debian.org/sid/source/wmclock"
|
||||
DOWNLOAD="https://deb.debian.org/debian/pool/main/w/wmclock/wmclock_1.0.16.orig.tar.gz"
|
||||
MD5SUM="e9b02a74f8dc96415262c7199b1ccaa7"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue