|
|
@ -2,6 +2,7 @@ |
|
|
|
|
|
|
|
# Slackware build script for "checkbashisms". |
|
|
|
|
|
|
|
# Copyright 2024 Sean Hinchee |
|
|
|
# Copyright 2015-2016 Marcel Saegebarth <marc@mos6581.de> |
|
|
|
# All rights reserved. |
|
|
|
# |
|
|
@ -25,12 +26,14 @@ |
|
|
|
cd $(dirname $0) ; CWD=$(pwd) |
|
|
|
|
|
|
|
PRGNAM=checkbashisms |
|
|
|
VERSION=${VERSION:-2.15.10} |
|
|
|
REV=${REV:-00d3afd7eefe53371d07d7404caf6b862a32931e} |
|
|
|
VERSION=${VERSION:-2.23.4} |
|
|
|
#REV=${REV:-00d3afd7eefe53371d07d7404caf6b862a32931e} |
|
|
|
ARCH=noarch |
|
|
|
BUILD=${BUILD:-1} |
|
|
|
TAG=${TAG:-_SBo} |
|
|
|
PKGTYPE=${PKGTYPE:-tgz} |
|
|
|
STEM="devscripts-2.23.4+deb12u2" |
|
|
|
ARCHIVE="devscripts_2.23.4+deb12u2.tar.xz" |
|
|
|
|
|
|
|
# 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 |
|
|
@ -48,16 +51,39 @@ set -e |
|
|
|
|
|
|
|
rm -rf $PKG |
|
|
|
mkdir -p $TMP $PKG $OUTPUT |
|
|
|
cd $PKG |
|
|
|
cd $TMP |
|
|
|
|
|
|
|
rm -rf $STEM |
|
|
|
tar xvf $CWD/$ARCHIVE |
|
|
|
cd $STEM |
|
|
|
|
|
|
|
chown -R root:root . |
|
|
|
find -L . \ |
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ |
|
|
|
-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 {} \; |
|
|
|
|
|
|
|
|
|
|
|
### Build |
|
|
|
mkdir -p $PKG/usr/bin |
|
|
|
install -m 0755 "$CWD/$PRGNAM.pl?id=$REV" $PKG/usr/bin/$PRGNAM || \ |
|
|
|
install -m 0755 "$CWD/$PRGNAM.pl" $PKG/usr/bin/$PRGNAM |
|
|
|
cp scripts/$PRGNAM.pl $PKG/usr/bin/ |
|
|
|
|
|
|
|
### Bash completions |
|
|
|
mkdir -p $PKG/usr/share/bash-completion/completions |
|
|
|
cp scripts/$PRGNAM.bash_completion $PKG/usr/share/bash-completion/completions/$PRGNAM |
|
|
|
|
|
|
|
### Manual |
|
|
|
mkdir -p $PKG/usr/man/man1 |
|
|
|
cat "$CWD/$PRGNAM.1?id=$REV" > $PKG/usr/man/man1/$PRGNAM.1 || \ |
|
|
|
cat "$CWD/$PRGNAM.1" > $PKG/usr/man/man1/$PRGNAM.1 |
|
|
|
gzip -9 $PKG/usr/man/man1/$PRGNAM.1 |
|
|
|
cp scripts/$PRGNAM.1 $PKG/usr/man/man1/ |
|
|
|
|
|
|
|
### Wrap up package |
|
|
|
|
|
|
|
#find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |
|
|
|
# | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |
|
|
|
|
|
|
|
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 |
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |
|
|
|