diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2010-04-24 04:06:31 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-15 10:50:25 +0200 |
commit | bdf0c4ab734020a12712150c12714bd62d9edecc (patch) | |
tree | c42be290c2692828152f781be81fe285ab745898 /system/mcrypt/mcrypt.SlackBuild | |
parent | 0f6587ae025ba1e758434e5449a9f0057758f94a (diff) |
system/mcrypt: Build bump, script cleanup.
Diffstat (limited to 'system/mcrypt/mcrypt.SlackBuild')
-rw-r--r-- | system/mcrypt/mcrypt.SlackBuild | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/system/mcrypt/mcrypt.SlackBuild b/system/mcrypt/mcrypt.SlackBuild index 0996cddbab25..e9ab1b0863fc 100644 --- a/system/mcrypt/mcrypt.SlackBuild +++ b/system/mcrypt/mcrypt.SlackBuild @@ -1,18 +1,17 @@ #!/bin/sh # Slackware Package Build Script for mcrypt - # Home Page http://mcrypt.sourceforge.net/ -# -# Copyright (c) 2008-2009, Nishant Limbachia (nishant@mnspace.net) + +# Copyright (c) 2008-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net) # All rights reserved. -# -# Redistribution and use of this script, with or without modification, is + +# Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # -# 1. Redistributions of script must retain the above copyright notice, +# 1. Redistributions of script must retain the above copyright notice, # this list of conditions and the following disclaimer. -# + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR @@ -28,7 +27,7 @@ PRGNAM=mcrypt VERSION=2.6.8 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -66,8 +65,8 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ @@ -84,17 +83,14 @@ cp -a \ NEWS README TODO THANKS doc/sample.mcryptrc \ $PKG/usr/doc/$PRGNAM-$VERSION -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) +### strip binaries +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) +) mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |