mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/samhain: Fix building on x86_64, removed bashisms.
Thanks to Richard Scott Smith for the hints on optimizations Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
7af2bf5b1a
commit
bbe8c0a708
1 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
PRGNAM=samhain
|
PRGNAM=samhain
|
||||||
VERSION=${VERSION:-3.1.0}
|
VERSION=${VERSION:-3.1.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
|
@ -47,7 +47,7 @@ elif [ "$ARCH" = "i686" ]; then
|
||||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
elif [ "$ARCH" = "x86_64" ]; then
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
SLKCFLAGS="-O2 -fPIC"
|
SLKCFLAGS="-O1 -fPIC"
|
||||||
LIBDIRSUFFIX="64"
|
LIBDIRSUFFIX="64"
|
||||||
else
|
else
|
||||||
SLKCFLAGS="-O2"
|
SLKCFLAGS="-O2"
|
||||||
|
@ -59,7 +59,7 @@ set -e
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -f $PRGNAM-$VERSION.tar.gz{,.asc}
|
rm -f $PRGNAM-$VERSION.tar.gz $PRGNAM-$VERSION.tar.gz.asc
|
||||||
tar xvf $CWD/$PRGNAM-current.tar.gz
|
tar xvf $CWD/$PRGNAM-current.tar.gz
|
||||||
rm -rf $PRGNAM-$VERSION
|
rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $PRGNAM-$VERSION.tar.gz
|
tar xvf $PRGNAM-$VERSION.tar.gz
|
||||||
|
@ -87,7 +87,7 @@ make install DESTDIR=$PKG
|
||||||
mv $PKG/etc/samhainrc $PKG/etc/samhainrc.new
|
mv $PKG/etc/samhainrc $PKG/etc/samhainrc.new
|
||||||
|
|
||||||
# No need for /var/log and /var/run directories here
|
# No need for /var/log and /var/run directories here
|
||||||
rmdir $PKG/var/{log,run}
|
rmdir $PKG/var/log $PKG/var/run
|
||||||
|
|
||||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
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
|
for i in $( find $PKG/usr/man -type l ) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||||
|
|
Loading…
Reference in a new issue