summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Pablo Santamaria <pablosantamaria@gmail.com>2011-12-21 22:25:59 -0600
committer Robby Workman <rworkman@slackbuilds.org>2011-12-21 22:25:59 -0600
commit912bb9b21aeb60c65730eb5ded50500f0e14be6b (patch)
tree08d72ecd839c3da250dbf0ddd91f5849e4ac8c46
parent87a3c0e0e74763838460e9d8e47fcd8094da42eb (diff)
downloadslackbuilds-912bb9b21aeb60c65730eb5ded50500f0e14be6b.tar.gz
slackbuilds-912bb9b21aeb60c65730eb5ded50500f0e14be6b.tar.xz
system/makepasswd: Updated for version 0.5.0.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--system/makepasswd/README2
-rw-r--r--system/makepasswd/makepasswd.SlackBuild11
-rw-r--r--system/makepasswd/makepasswd.info8
3 files changed, 7 insertions, 14 deletions
diff --git a/system/makepasswd/README b/system/makepasswd/README
index d7082008f2..43b8defdc9 100644
--- a/system/makepasswd/README
+++ b/system/makepasswd/README
@@ -1,4 +1,2 @@
-makepasswd (generate pseudo-random passwords of a desired length)
-
Makepasswd generates pseudo-random passwords of a desired length.
It is able to generate its crypted equivalent.
diff --git a/system/makepasswd/makepasswd.SlackBuild b/system/makepasswd/makepasswd.SlackBuild
index df0c5043a3..786406b899 100644
--- a/system/makepasswd/makepasswd.SlackBuild
+++ b/system/makepasswd/makepasswd.SlackBuild
@@ -5,16 +5,14 @@
# Written by Pablo Santamaria (pablosantamaria@gmail.com)
PRGNAM=makepasswd
-VERSION=${VERSION:-0.4.2}
+VERSION=${VERSION:-0.5.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
@@ -56,13 +54,10 @@ find . \
make CFLAGS="$SLKCFLAGS"
make PREFIX=$PKG/usr install
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS BUGS INSTALL README \
- $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 26c2b06510..ea80303f73 100644
--- a/system/makepasswd/makepasswd.info
+++ b/system/makepasswd/makepasswd.info
@@ -1,8 +1,8 @@
PRGNAM="makepasswd"
-VERSION="0.4.2"
-HOMEPAGE="http://people.defora.org/~khorben/projects/makepasswd/"
-DOWNLOAD="http://people.defora.org/~khorben/projects/makepasswd/makepasswd-0.4.2.tar.gz"
-MD5SUM="ef95058753742d25f070628166d84815"
+VERSION="0.5.0"
+HOMEPAGE="http://defora.org/os/category/3499/makepasswd"
+DOWNLOAD="http://defora.org/os/download/download/3500/makepasswd-0.5.0.tar.gz"
+MD5SUM="539837def561227e4b5ec286ee33b41c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Pablo Santamaria"