misc/tal: New maintainer.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
124c447715
commit
52e91df688
|
@ -1,3 +1,5 @@
|
||||||
|
tal (trailer alignment filter)
|
||||||
|
|
||||||
tal is a filter that reads in lines from standard input. The lines are
|
tal is a filter that reads in lines from standard input. The lines are
|
||||||
sent to standard output with common trailing characters aligned so that
|
sent to standard output with common trailing characters aligned so that
|
||||||
they all begin and end on the same column of text. This can be used to
|
they all begin and end on the same column of text. This can be used to
|
||||||
|
|
|
@ -1,32 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Slackware build script for tal
|
# Slackware build script for tal
|
||||||
|
|
||||||
|
# Copyright 2022 B. Watson <urchlay@slackware.uk>
|
||||||
# Copyright 2018 Donald Cooley South Haven, Indiana USA
|
# Copyright 2018 Donald Cooley South Haven, Indiana USA
|
||||||
# All rights reserved
|
|
||||||
# Written by Peter Wang <novalazy@gmail.com>
|
# Written by Peter Wang <novalazy@gmail.com>
|
||||||
|
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||||
# 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.
|
|
||||||
|
|
||||||
cd $(dirname $0) ; CWD=$(pwd)
|
cd $(dirname $0) ; CWD=$(pwd)
|
||||||
|
|
||||||
PRGNAM=tal
|
PRGNAM=tal
|
||||||
VERSION=${VERSION:-1.9}
|
VERSION=${VERSION:-1.9}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
PKGTYPE=${PKGTYPE:-tgz}
|
PKGTYPE=${PKGTYPE:-tgz}
|
||||||
|
|
||||||
|
@ -38,9 +24,6 @@ if [ -z "$ARCH" ]; then
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
||||||
# the name of the created package would be, and then exit. This information
|
|
||||||
# could be useful to other scripts.
|
|
||||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -73,27 +56,22 @@ rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||||
-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 {} \;
|
|
||||||
|
|
||||||
make CFLAGS="$SLKCFLAGS -ansi" tal
|
make CFLAGS="$SLKCFLAGS -ansi" tal
|
||||||
|
|
||||||
mkdir -p $PKG/usr/bin
|
install -D -s -m0755 $PRGNAM $PKG/usr/bin
|
||||||
cp -a tal $PKG/usr/bin
|
|
||||||
strip --strip-unneeded $PKG/usr/bin/tal
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/man/man1
|
mkdir -p $PKG/usr/man/man1
|
||||||
gzip -9c tal.1 > $PKG/usr/man/man1/tal.1.gz
|
gzip -9c tal.1 > $PKG/usr/man/man1/tal.1.gz
|
||||||
|
|
||||||
# INSTALL contains a vim tip so let's keep it.
|
# INSTALL contains a vim tip so let's extract it.
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a \
|
mkdir -p $PKGDOC
|
||||||
INSTALL LICENSE \
|
sed -n '/^For use with vim/,$p' INSTALL > $PKGDOC/vimtip.txt
|
||||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
cp -a LICENSE $PKGDOC
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
Loading…
Reference in New Issue