diff options
Diffstat (limited to 'development/mg-troglobit/mg-troglobit.SlackBuild')
-rw-r--r-- | development/mg-troglobit/mg-troglobit.SlackBuild | 39 |
1 files changed, 30 insertions, 9 deletions
diff --git a/development/mg-troglobit/mg-troglobit.SlackBuild b/development/mg-troglobit/mg-troglobit.SlackBuild index 6690f0b458844..e3e5d6e67c4af 100644 --- a/development/mg-troglobit/mg-troglobit.SlackBuild +++ b/development/mg-troglobit/mg-troglobit.SlackBuild @@ -1,11 +1,31 @@ #!/bin/sh -e -# Slackware build script for Joachim Nilsson (troglobit)'s fork of OpenBSD Mg -# saidone@saidone.org revision date 2019/12/12 -# license (of this script and its accessories, not that of the application it will package): see LICENSE +# Slackware build script for Joachim Wiberg (troglobit)'s fork of OpenBSD Mg +# saidone@saidone.org revision date 2020/08/24 +# +# Copyright (c) 2019 Marco Marini +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. PRGNAM=mg-troglobit -VERSION=${VERSION:-3.3} +SRCNAM=${PRGNAM%-*} +VERSION=${VERSION:-3.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -41,10 +61,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/${PRGNAM/troglobit/}$VERSION.tar.gz -mv ${PRGNAM/troglobit/}$VERSION $PRGNAM-$VERSION -cd $PRGNAM-$VERSION +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . @@ -79,7 +98,9 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -rm $PKG/usr/doc/$PRGNAM-$VERSION/*.md +gzip -9 $PKG/usr/doc/$PRGNAM-$VERSION/tutorial + +rm -f $PKG/usr/doc/$PRGNAM-$VERSION/{*.md,.mg} cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |