blob: 7e19d6ec4a593a04f48051a04ea6fdb2defb0b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/bash
# Slackware build script for hashID
# Original author: Andre Fernando, Indonesia.
# Modified and now maintained by B. Watson (urchlay@slackware.uk).
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20250929 bkw: BUILD=2
# - take over maintenance.
# - install the man page to /usr/man, not /usr/doc.
# - also, make it a section 1 man page.
# - ARCH=noarch.
# - simplify script.
# - name executable correctly; compatibility symlinks for the old
# name (which seems to have been made up from thin air).
# - get setup.py, setup.cfg out of the package. not used.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=hashID
VERSION=${VERSION:-3.1.4}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
ARCH=noarch
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
fi
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} +
EXE=hashid
OLDEXE=hash-identifier
PKGBIN=$PKG/usr/bin
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
PKGMAN=$PKG/usr/man/man1
PKGSHARE=$PKG/usr/share/$PRGNAM-$VERSION
mkdir -p $PKGBIN $PKGDOC $PKGMAN $PKGSHARE
install -oroot -groot -m0775 hashid.py $PKGBIN/$EXE
cp -a setup.py setup.cfg $PKGSHARE
sed '/^\.TH/s,7,1,' doc/man/h*.7 | gzip -9c > $PKGMAN/$EXE.1.gz
# 20250930 bkw: compatibility links for the old name from the
# previous maintainer of this build. No idea why he installed it as
# hash-identifier. The Debian package has it as hashid, the upstream
# name is hashid.py, and the man page is named hashid. I'm including
# the old name in case anyone wrote scripts that use it.
ln -s $EXE $PKGBIN/$OLDEXE
ln -s $EXE.1.gz $PKGMAN/$OLDEXE.1.gz
cp -a README* doc/{CHANGE*,LIC*,hashinfo.*} $PKGDOC
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|