Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # Run me as root
- export kileSource=`pwd`;
- export kileBuild=/opt/kile-build;
- export kileInstall=/opt/kile-install;
- mkdir $kileBuild;
- mkdir $kileInstall;
- cd $kileBuild;
- cmake $kileSource -DCMAKE_INSTALL_PREFIX=$kileInstall -DCMAKE_BUILD_TYPE="Debug";
- make -j 2
- make install -j 2
- # You might place apart the following in another file and use it from /bin as command shell invokation.
- KDEDIRS=$kileInstall:$KDEDIRS;
- $kileInstall/bin/kile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement