diff options
author | Robert Allen <slacker@engineer.com> | 2015-06-26 00:15:42 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-06-26 00:15:42 +0700 |
commit | 81906175dd5c74a081e1c4ee5efa0aa9c225fb0c (patch) | |
tree | 054885a6278b34e386bc7cc19fc026401832c9ca /office/taskd/taskd.SlackBuild | |
parent | fca6fd870b266f8868a32dd636a910e7ace97473 (diff) |
office/taskd: Updated for version 1.1.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/taskd/taskd.SlackBuild')
-rw-r--r-- | office/taskd/taskd.SlackBuild | 62 |
1 files changed, 42 insertions, 20 deletions
diff --git a/office/taskd/taskd.SlackBuild b/office/taskd/taskd.SlackBuild index f137a521399b..e61a6260592f 100644 --- a/office/taskd/taskd.SlackBuild +++ b/office/taskd/taskd.SlackBuild @@ -2,29 +2,53 @@ # Slackware build script for taskd -# Copyright 2014 Robert Allen +# 2015 Robert Allen # All rights reserved, including Creator Endowed Unalienable Rights +################################################################ +# Statement of Origin and Principle: +# This script was adapted from SBo template for taskd use +# by Robert Allen slacker@engineer.com, Wed Jun 24 15:09:40 MDT 2015 # -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: +# I respectfully request that you leave this statement of origin +# and the following acknowledgment of right to use, modify and +# distribute, intact in your own versions and those you may pass +# to others. I encourage you to use this statement of origin for +# your own work instead of a copy/paste license or copyright +# which you neither understand nor could enforce on others. +################################################################ +# Acknowledgment of right to use, copy, modify and distribute: # -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. +# You already have the right to use, modify and distribute this +# or any other thought or idea, and need no license or other +# permission from anyone to do so! # -# 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. +# Exercise it freely and never concede it to anyone! +# +# To be first to think or publish an idea is only to be first +# to demonstrate that it is a human possibility, and to provide +# a single step in the path of human progress to help ourselves +# and all others along our shared journey into the future. +# +# To claim ownership of an idea, a shared human possibility, by +# contrived legal devices is an act of greed and arrogance that +# attempts to rob every other human being of the same right to +# think and benefit from that same shared human possibility. +# +# Acknowledge and respect the work of others. Enjoy the respect +# earned by your own good works, and encourage and applaud those +# who would build on it! +# +# Free your mind, and those around you! +# +# Abolish the pernicious impediment to human progress known as +# intellectual property law which obstructs all our future paths +# only for the immediate gain of a few. +# +################################################################ PRGNAM=taskd -VERSION=${VERSION:-1.0.0} -BUILD=${BUILD:-3} +VERSION=${VERSION:-1.1.0} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -83,8 +107,7 @@ mkdir -p build -DTASKD_EXTDIR=libexec/taskd \ -DTASKD_DOCDIR=doc/$PRGNAM-$VERSION \ -DTASKD_MAN1DIR=man/man1 \ - -DTASKD_MAN5DIR=man/man5 \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} + -DTASKD_MAN5DIR=man/man5 make make install DESTDIR=$PKG @@ -109,7 +132,6 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r #Additional documents... mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/doc -cp -a doc/[a-z]*.txt $PKG/usr/doc/$PRGNAM-$VERSION/doc/. cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README cat $CWD/README_SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README_SLACKWARE |