Last active
February 4, 2016 12:43
-
-
Save TobiG77/d3a1c0af9326886668c8 to your computer and use it in GitHub Desktop.
Build RedisDesktopManager on OpenSuSE (TumbleWeed) from source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo zypper in -t pattern devel_qt5 | |
sudo zypper in subversion lndir | |
Then, as per: https://github.com/uglide/RedisDesktopManager/wiki/Build-from-source | |
git clone --recursive https://github.com/uglide/RedisDesktopManager.git rdm | |
cd rdm | |
mkdir -p obj-build | |
cd obj-build | |
lndir ../src | |
RDM_DIR=`dirname $PWD` | |
. $RDM_DIR/build/common_functions | |
sync_breakpad | |
cd $OLDPWD | |
qmake-qt5 | |
make && sudo make install && \ | |
pushd /usr/share/redis-desktop-manager/bin && \ | |
sudo mv qt.conf qt.backup && \ | |
chmod +x rdm.sh && \ | |
popd | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment