development/mg-troglobit: Updated for version 3.4.

Signed-off-by: Dave Woodfall <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Marco Marini 2020-09-02 23:27:23 +01:00 committed by Willy Sudiarto Raharjo
parent ead98b4e27
commit e69694b930
No known key found for this signature in database
GPG key ID: 3F617144D7238786
4 changed files with 33 additions and 42 deletions

View file

@ -1,21 +0,0 @@
MIT License
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.

View file

@ -1,9 +0,0 @@
# mg-troglobit.SlackBuild
A SlackBuild for Joachim Nilsson (troglobit)'s fork of OpenBSD Mg (https://github.com/troglobit/mg)
The usage is the very same of https://slackbuilds.org/howto/
Get the Mg source code here: https://github.com/troglobit/mg/releases/download/v3.3/mg-3.3.tar.gz
![Mg-troglobit on Slackware 14.0](https://i.postimg.cc/htfV3k6x/mg33.png "Mg-troglobit on Slackware 14.0")

View file

@ -1,11 +1,31 @@
#!/bin/sh -e #!/bin/sh -e
# Slackware build script for Joachim Nilsson (troglobit)'s fork of OpenBSD Mg # Slackware build script for Joachim Wiberg (troglobit)'s fork of OpenBSD Mg
# saidone@saidone.org revision date 2019/12/12 # saidone@saidone.org revision date 2020/08/24
# license (of this script and its accessories, not that of the application it will package): see LICENSE #
# 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 PRGNAM=mg-troglobit
VERSION=${VERSION:-3.3} SRCNAM=${PRGNAM%-*}
VERSION=${VERSION:-3.4}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
@ -41,10 +61,9 @@ set -e
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $SRCNAM-$VERSION
tar xvf $CWD/${PRGNAM/troglobit/}$VERSION.tar.gz tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
mv ${PRGNAM/troglobit/}$VERSION $PRGNAM-$VERSION cd $SRCNAM-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
chmod -R u+w,go+r-w,a-s . 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 {} \; 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 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 cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -1,8 +1,8 @@
PRGNAM="mg-troglobit" PRGNAM="mg-troglobit"
VERSION="3.3" VERSION="3.4"
HOMEPAGE="https://github.com/troglobit/mg" HOMEPAGE="https://github.com/troglobit/mg"
DOWNLOAD="https://github.com/troglobit/mg/releases/download/v3.3/mg-3.3.tar.gz" DOWNLOAD="https://github.com/troglobit/mg/releases/download/v3.4/mg-3.4.tar.gz"
MD5SUM="5812cf804068cef687d8e2fe0346f7bc" MD5SUM="6b79855d54770bcb23e5457ebde8296c"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="" REQUIRES=""