slackbuilds_ponce/system/mongodb/mongodb.SlackBuild
Miguel De Anda d884e67b46 system/mongodb: Updated for version 2.6.7.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2015-01-31 07:07:20 +07:00

81 lines
1.8 KiB
Bash

#!/bin/sh
# Slackware Package Build Script for MongoDB
# Home Page http://www.mongodb.org
PRGNAM="mongodb"
VERSION=${VERSION:-2.6.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i686 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
MONGO_USER=${MONGO_USER:-285}
MONGO_GROUP=${MONGO_GROUP:-285}
set -e
# Bail if user or group isn't valid on your system
if ! getent passwd mongo 1>/dev/null 2>/dev/null; then
cat << EOF
You must have a mongo user to run this script
# groupadd -g $MONGO_USER mongo
# useradd -u $MONGO_USER -d /var/lib/$PRGNAM -s /bin/false -g mongo mongo
EOF
exit
elif ! getent group mongo 1>/dev/null 2>/dev/null; then
cat << EOF
You must have a mongo group to run this script
# groupadd -g $MONGO_GROUP mongo
EOF
exit
fi
rm -fr $TMP/$PRGNAM-$VERSION $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
tar xvf $CWD/$PRGNAM-linux-$ARCH-$VERSION.tgz
cd $PRGNAM-linux-$ARCH-$VERSION
chown -R root.root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
mkdir -p ${PKG}/usr/doc/${PRGNAM}-${VERSION}
cp GNU-AGPL-3.0 README THIRD-PARTY-NOTICES ${PKG}/usr/doc/${PRGNAM}-${VERSION}
mkdir -p ${PKG}/usr/bin
cp bin/* ${PKG}/usr/bin
mkdir -p $PKG/etc/rc.d
cat $CWD/rc.mongodb > $PKG/etc/rc.d/rc.mongodb.new
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
mkdir -p $PKG/var/lib/mongodb
chown mongo.mongo $PKG/var/lib/mongodb
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}