mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/zabbix_server: Miscellaneous cleanups
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
f8f6818f94
commit
609c4c8c4f
1 changed files with 16 additions and 7 deletions
|
@ -5,11 +5,18 @@
|
|||
# revision date 2010-03-30
|
||||
|
||||
PRGNAM=zabbix_server
|
||||
VERSION=1.8.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
VERSION=${VERSION:-1.8.2}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
PRGSHORT=zabbix
|
||||
|
||||
DOCROOT=${DOCROOT:-/var/www/htdocs}
|
||||
|
@ -57,6 +64,10 @@ elif [ "$ARCH" = "arm" ]; then
|
|||
SLKCFLAGS="-O2 -march=armv4t"
|
||||
LIBDIRSUFFIX=""
|
||||
ARCHQUADLET="-gnueabi"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
ARCHQUADLET=""
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -94,10 +105,8 @@ make install DESTDIR=$PKG
|
|||
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
|
||||
)
|
||||
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
|
||||
|
||||
# Install "frontend" to $DOCROOT/zabbix
|
||||
mkdir -p $PKG/$DOCROOT/$PRGSHORT
|
||||
|
|
Loading…
Reference in a new issue