summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2017-02-10 14:01:14 -0500
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-02-11 07:23:59 +0700
commit16670f8cac2612a857fd20fac48a8803dc65fea6 (patch)
tree7e8913691296a3c5a5a848cfef03184b1c2b45d2 /system
parent3c7bc8461151a02118ac614708ae062f83aa00f7 (diff)
downloadslackbuilds-16670f8cac2612a857fd20fac48a8803dc65fea6.tar.gz
slackbuilds-16670f8cac2612a857fd20fac48a8803dc65fea6.tar.xz
system/makepasswd: Updated for version 0.5.4, new maintainer.
Diffstat (limited to 'system')
-rw-r--r--system/makepasswd/makepasswd.SlackBuild32
-rw-r--r--system/makepasswd/makepasswd.info10
2 files changed, 25 insertions, 17 deletions
diff --git a/system/makepasswd/makepasswd.SlackBuild b/system/makepasswd/makepasswd.SlackBuild
index 523b2f2879..27d0a4e0d3 100644
--- a/system/makepasswd/makepasswd.SlackBuild
+++ b/system/makepasswd/makepasswd.SlackBuild
@@ -2,16 +2,27 @@
# Slackware build script for makepasswd
-# Written by Pablo Santamaria (pablosantamaria@gmail.com)
+# Originally written by Pablo Santamaria (email removed)
+
+# Now maintained by B. Watson <yalhcru@gmail.com>. Original version
+# had no license, modified version released under the WTFPL. See
+# http://www.wtfpl.net/txt/copying/ for details.
+
+# 20170210 bkw:
+# - Take over maintenance
+# - Update for v0.5.4
+# - i486 => i586
+# - install HTML doc to /usr/doc/$PRGNAM-$VERSION, not /usr/man/html1
+# - script cosmetic cleanups
PRGNAM=makepasswd
-VERSION=${VERSION:-0.5.3}
+VERSION=${VERSION:-0.5.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -22,8 +33,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@@ -53,15 +64,12 @@ find -L . \
make CFLAGS="$SLKCFLAGS"
make PREFIX=$PKG/usr DATADIR=$PKG/usr MANDIR=$PKG/usr/man install
-rm -rf $PKG/usr/doc # nothing useful
-
-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
+strip $PKG/usr/bin/$PRGNAM
+gzip -9 $PKG/usr/man/man1/$PRGNAM.1
-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
+mv $PKG/usr/man/html1/ $PKG/usr/doc/$PRGNAM-$VERSION
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/system/makepasswd/makepasswd.info b/system/makepasswd/makepasswd.info
index bbcb0682b7..d90d9e9ca1 100644
--- a/system/makepasswd/makepasswd.info
+++ b/system/makepasswd/makepasswd.info
@@ -1,10 +1,10 @@
PRGNAM="makepasswd"
-VERSION="0.5.3"
+VERSION="0.5.4"
HOMEPAGE="http://defora.org/os/download/641"
-DOWNLOAD="http://defora.org/os/download/download/4323/makepasswd-0.5.3.tar.gz"
-MD5SUM="f9303ba52592555a45b11e35779ca11f"
+DOWNLOAD="http://defora.org/os/download/download/4438/makepasswd-0.5.4.tar.gz"
+MD5SUM="c3cf95279f2721c2b5bd5731c0e80d34"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
-MAINTAINER="Pablo Santamaria"
-EMAIL="pablosantamaria@gmail.com"
+MAINTAINER="B. Watson"
+EMAIL="yalhcru@gmail.com"