diff options
author | Gethyn ThomasQuail <gethyn@bloodbathsoftworks.com> | 2015-08-03 19:04:10 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-03 19:04:10 +0700 |
commit | a3b5cb5022dd69c6be0bb012640729b7011383d4 (patch) | |
tree | c761c2229f938d64b75d4f7fde9d8ea4ea854404 /desktop | |
parent | 3eda24cbdb4c1820b0e95e242afd1f73e9c5fa82 (diff) | |
download | slackbuilds-a3b5cb5022dd69c6be0bb012640729b7011383d4.tar.gz |
desktop/wmtimer: Added (Timer DockApp).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/wmtimer/README | 3 | ||||
-rw-r--r-- | desktop/wmtimer/slack-desc | 19 | ||||
-rw-r--r-- | desktop/wmtimer/wmtimer.SlackBuild | 94 | ||||
-rw-r--r-- | desktop/wmtimer/wmtimer.info | 10 |
4 files changed, 126 insertions, 0 deletions
diff --git a/desktop/wmtimer/README b/desktop/wmtimer/README new file mode 100644 index 0000000000..89a1285a74 --- /dev/null +++ b/desktop/wmtimer/README @@ -0,0 +1,3 @@ +WMTimer is a dockable alarm clock for WindowMaker which can be run in alarm, countdown timer, or +chronograph mode. In alarm or timer mode, you can either execute a command or sound the system bell when +the time is reached. Wmtimer is configurable through the command line or the GTK GUI. diff --git a/desktop/wmtimer/slack-desc b/desktop/wmtimer/slack-desc new file mode 100644 index 0000000000..440abd1a7f --- /dev/null +++ b/desktop/wmtimer/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler--------------------------------------------------------| +wmtimer: wmtimer (Timer DockApp) +wmtimer: +wmtimer: WMTimer is a dockable alarm clock for WindowMaker which can be run in +wmtimer: alarm, countdown timer, or chronograph mode. In alarm or timer mode, +wmtimer: you can either execute a command or sound the system bell when the time +wmtimer: is reached. Wmtimer is configurable through the command line or the +wmtimer: GTK GUI. +wmtimer: +wmtimer: Homepage: http://www.darkops.net/wmtimer/ +wmtimer: +wmtimer: diff --git a/desktop/wmtimer/wmtimer.SlackBuild b/desktop/wmtimer/wmtimer.SlackBuild new file mode 100644 index 0000000000..6d70142469 --- /dev/null +++ b/desktop/wmtimer/wmtimer.SlackBuild @@ -0,0 +1,94 @@ +#!/bin/sh + +# Slackware build script for WMTimer +# +# Copyright 2015 Gethyn ThomasQuail <gethyn@bloodbathsoftworks.com> +# All rights reserved. +# +# Based on: +# SBo's cmake-template +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=wmtimer +VERSION=${VERSION:-2.92} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Let's compile! +cd wmtimer +make + +# Create bin directory and move executable there +mkdir -p $PKG/usr/bin +mv wmtimer $PKG/usr/bin + +# Leave build directory +cd .. + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a Changelog COPYING CREDITS INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/wmtimer/wmtimer.info b/desktop/wmtimer/wmtimer.info new file mode 100644 index 0000000000..dd76c64390 --- /dev/null +++ b/desktop/wmtimer/wmtimer.info @@ -0,0 +1,10 @@ +PRGNAM="wmtimer" +VERSION="2.92" +HOMEPAGE="https://web.archive.org/web/20101217102400/http://www.darkops.net/wmtimer/" +DOWNLOAD="https://web.archive.org/web/20101217102400/http://www.darkops.net/wmtimer/wmtimer-2.92.tar.gz" +MD5SUM="425bbb4b0cc852f858da025538d7c900" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Gethyn ThomasQuail" +EMAIL="gethyn@bloodbathsoftworks.com" |