Download
- Downloading And Compiling The Latest (2.0-beta2) Release
- Downloading, Building And Installing The Latest Development Version With Git
You can download the latest release or see other releases in the "files" section of the sourceforge page. You can see main changes in this version in the ChangeLog page.
Building The Latest Release
Just untar the package first:
tar -zxf krecipes-[VERSION_NUMBER].tar.gz
And compile
cmake .
make
make install
The project is being developed under extragear/utils in KDE's servers.
To download the source code, do:
git clone git://anongit.kde.org/krecipes
To update the source code, do:
cd krecipes
git pull
To build and install it in the default prefix (usually /usr/local):
mkdir build && cd build
cmake ..
make
make install
To build and install it in other prefix, for instance ~/.kde/:
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=~/.kde/
make
make install
Also if you install it in ~/.kde/ you may want to set the following variables
in your .bashrc (or wherever it's appropiate for you):
export PATH=~/.kde/bin:${PATH}
export MANPATH=~/.kde/man:$(manpath)
export KDEDIRS=~/.kde:/usr
export XDG_DATA_DIRS=~/.kde/share:${XDG_DATA_DIRS}
export LD_LIBRARY_PATH=~/.kde/lib
To uninstall it:
cd build && make uninstall
Krecipes project page