mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/robomongo: Updated for version 0.8.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
d09d1f08ac
commit
06048fbebe
8 changed files with 51 additions and 56 deletions
4
development/robomongo/robomongo-x86.sh
Normal file
4
development/robomongo/robomongo-x86.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
export LD_LIBRARY_PATH=/usr/lib/robomongo:$LD_LIBRARY_PATH
|
||||
export QT_PLUGIN_PATH=/usr/lib/robomongo:$QT_PLUGIN_PATH
|
||||
/usr/bin/robomongo.bin
|
4
development/robomongo/robomongo-x86_64.sh
Normal file
4
development/robomongo/robomongo-x86_64.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
export LD_LIBRARY_PATH=/usr/lib64/robomongo:$LD_LIBRARY_PATH
|
||||
export QT_PLUGIN_PATH=/usr/lib64/robomongo:$QT_PLUGIN_PATH
|
||||
/usr/bin/robomongo.bin
|
|
@ -4,26 +4,27 @@
|
|||
# Home Page http://www.robomongo.org
|
||||
|
||||
PRGNAM="robomongo"
|
||||
VERSION=${VERSION:-0.7.1}
|
||||
VERSION="0.8.2"
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
x86_64) ARCH=$( uname -m ) ;;
|
||||
i?86) ARCH=i386 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
x86_64)
|
||||
ANAME=x86_64
|
||||
ARCH=$( uname -m )
|
||||
LIB=lib64
|
||||
;;
|
||||
i?86)
|
||||
ARCH=i686
|
||||
ANAME=i386
|
||||
LIB=lib
|
||||
;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Sanity check, we make sure resulting package will work on users system.
|
||||
case "$ARCH" in
|
||||
i386) ANAME=x86; LIBDIRSUFFIX=; echo "System check passed..." ;;
|
||||
x86_64) ANAME=x64; LIBDIRSUFFIX=64; echo "System check passed..." ;;
|
||||
*) echo "$ARCH is not supported."; exit 1 ;;
|
||||
esac
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -31,42 +32,41 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
set -e
|
||||
|
||||
rm -fr $PKG
|
||||
rm -fr $TMP/$PRGNAM-$VERSION $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -fr $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION-$ANAME.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION-$ANAME
|
||||
chown -R root.root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
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 {} \;
|
||||
|
||||
install -m 0755 -D bin/$PRGNAM $PKG/usr/bin/$PRGNAM.bin
|
||||
sed "s|@LIBDIRSUFFIX@|$LIBDIRSUFFIX|" $CWD/$PRGNAM.launcher > $PKG/usr/bin/$PRGNAM
|
||||
chmod 0755 $PKG/usr/bin/$PRGNAM
|
||||
mkdir -p ${PKG}/usr/bin
|
||||
cp bin/robomongo ${PKG}/usr/bin/robomongo.bin
|
||||
cp $CWD/robomongo-$ANAME.sh ${PKG}/usr/bin/robomongo
|
||||
chmod +x ${PKG}/usr/bin/robomongo
|
||||
|
||||
mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM
|
||||
cp -r lib/* $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM
|
||||
mkdir -p ${PKG}/usr/${LIB}/${PRGNAM}
|
||||
cp -r lib/* ${PKG}/usr/${LIB}/${PRGNAM}
|
||||
|
||||
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/share/applications
|
||||
mkdir -p ${PKG}/usr/share/pixmaps
|
||||
cp share/applications/robomongo.desktop ${PKG}/usr/share/applications
|
||||
cp share/icons/robomongo.png ${PKG}/usr/share/pixmaps
|
||||
|
||||
mkdir -p $PKG/usr/share/applications $PKG/usr/share/icons
|
||||
install -m 0644 -D $CWD/$PRGNAM.desktop \
|
||||
$PKG/usr/share/applications/$PRGNAM.desktop
|
||||
install -m 0644 -D $CWD/$PRGNAM.png \
|
||||
$PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp README.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
mkdir -p ${PKG}/usr/doc/${PRGNAM}-${VERSION}
|
||||
cp README LICENSE COPYRIGHT CHANGELOG ${PKG}/usr/doc/${PRGNAM}-${VERSION}
|
||||
cat ${CWD}/${PRGNAM}.SlackBuild > ${PKG}/usr/doc/${PRGNAM}-${VERSION}/${PRGNAM}.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=robomongo
|
||||
Name=Robomongo
|
||||
GenericName=The IDE for mongodb working.
|
||||
GenericName[de]=Die IDE der
|
||||
Icon=robomongo.png
|
||||
Terminal=false
|
||||
Categories=Development;IDE;mongodb;
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="robomongo"
|
||||
VERSION="0.7.1"
|
||||
VERSION="0.8.2"
|
||||
HOMEPAGE="http://www.robomongo.org/"
|
||||
DOWNLOAD="https://www.dropbox.com/sh/u0s0i8e4m0a8i9f/QSvldiK0J-/robomongo-0.7.1-x86.tar.gz"
|
||||
MD5SUM="a09eca94da3cb1ec951fda67709635a1"
|
||||
DOWNLOAD_x86_64="https://www.dropbox.com/sh/u0s0i8e4m0a8i9f/7x1V1UhlgI/robomongo-0.7.1-x64.tar.gz"
|
||||
MD5SUM_x86_64="c2645a6cce409933d43a34cefd92ecf0"
|
||||
DOWNLOAD="http://robomongo.org/files/linux/robomongo-0.8.2-i386.tar.gz"
|
||||
MD5SUM="5965ab3108866126def196f3708d4d15"
|
||||
DOWNLOAD_x86_64="http://robomongo.org/files/linux/robomongo-0.8.2-x86_64.tar.gz"
|
||||
MD5SUM_x86_64="cc6738c1c316bb7e9db16c4e2616e227"
|
||||
REQUIRES=""
|
||||
MAINTAINER="Miguel De Anda"
|
||||
EMAIL="miguel@thedeanda.com"
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh
|
||||
export LD_LIBRARY_PATH=/usr/lib@LIBDIRSUFFIX@/robomongo:$LD_LIBRARY_PATH
|
||||
export QT_PLUGIN_PATH=/usr/lib@LIBDIRSUFFIX@/robomongo:$QT_PLUGIN_PATH
|
||||
exec /usr/bin/robomongo.bin
|
Binary file not shown.
Before Width: | Height: | Size: 118 KiB |
|
@ -6,11 +6,11 @@
|
|||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
robomongo: robomongo (MongoDB admin gui)
|
||||
robomongo: robomongo (Database Software)
|
||||
robomongo:
|
||||
robomongo: Robomongo is a shell-centric cross-platform MongoDB management tool.
|
||||
robomongo:
|
||||
robomongo: homepage: http://www.robomongo.org/
|
||||
robomongo: Homepage: http://www.robomongo.org/
|
||||
robomongo:
|
||||
robomongo:
|
||||
robomongo:
|
||||
|
|
Loading…
Reference in a new issue