diff options
Diffstat (limited to 'desktop/wmmon/wmmon.SlackBuild')
-rw-r--r-- | desktop/wmmon/wmmon.SlackBuild | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/desktop/wmmon/wmmon.SlackBuild b/desktop/wmmon/wmmon.SlackBuild index 55a590755d..3de7dccf81 100644 --- a/desktop/wmmon/wmmon.SlackBuild +++ b/desktop/wmmon/wmmon.SlackBuild @@ -6,9 +6,40 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20170224 bkw: +# - BUILD=2 +# - install /etc/wmmonrc as a proper .new config +# - make doinst.sh treat /etc/wmmonrc.new correctly +# - don't install INSTALL in package docdir +# - added notes (to myself) about version numbers, to stop myself +# from trying to "upgrade" to 1.2b1. +# - actually mention windowmaker in the README (derp!) + +# Notes about versions: + +# The version number is from Debian. I don't know why they called it 1.1, +# because: +# $ wmmon -v +# WMMon version 1.2.b2 +# Since I'm using their tarball, I'll stick with their version numbering. + +# http://www.dockapps.net/wmmon has a wmmon-1.2b1 release, which looks +# like a higher version number than we use for VERSION here. However +# it's really older (missing some options/bugfixes) and this is obvious +# if you look at the output of wmmon -v (1.2.b1 < 1.2.b2). + +# I could package up a newer git commit (there are commits from 2015), +# but they add complexity (a new libdockapp.so library, as a separate +# source tree, which wmmon would require as a dependency) and don't fix +# any bugs or add any features beyond what we've got here. Plus, we've +# got the same version Debian uses, and Fedora uses effectively the +# same version too (they include a commit "Remove trailing whitespace" +# that doesn't change the actual code). Gentoo uses 1.2b1, but I'm not +# using them for a role model :) + PRGNAM=wmmon VERSION=${VERSION:-1.1+20131205} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -75,12 +106,10 @@ cd $PRGNAM cd - mkdir -p $PKG/etc -cat $CWD/wmmonrc > $PKG/etc/wmmonrc.sample +cat $CWD/wmmonrc > $PKG/etc/wmmonrc.new mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - BUGS CHANGES COPYING HINTS INSTALL README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a BUGS CHANGES COPYING HINTS README TODO $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |