2013年11月11日月曜日

Installing CuteMarkEd on Linux Mint 15

CuteMarkEd is a markdown editor with GUI for Linux and Windows. Here is a page on GitHub. Installation instructions are described in here. (Be careful: I have already installed some packages like libc6, so, following procedure may not contain necessary packages. Read the documentation from developers of CuteMarkEd carefully.)
  • git clone https://github.com/loose/CuteMarkEd.git
  • cd CuteMarkEd
  • less README.md
  • git submodule update
  • sudo apt-get install ubuntu-sdk libqt5webkit5-dev qtquick1-5-dev qtlocation5-dev qtsensors5-dev qtdeclarative5-dev libgstreamer-plugins-base0.10 libgstreamer-plugins-base0.10-dev libhunspell-dev libxslt1-dev libsqlite3-dev
  • cd discount
  • ./configure.sh
  • make
  • sudo make install
  • cd ..
  • qmake CuteMarkEd.pro
  • make
  • sudo make install
 With these procedures, CuteMarkEd is successfully installed in my environment. However, it is installed to /usr/lib/x86_64-linux-gnu/qt5/bin/. $PATH does not contain that place. So, if you want to boot the editor with command easily just type 'cutemarked', change a location to install or make symbolic links to a place where $PATH contains. I created symbolic link to /usr/local/bin/ by a following command:
  •  sudo ln -s /usr/lib/x86_64-linux-gnu/qt5/bin/cutemarked /usr/local/bin/
It works well :-)

0 件のコメント:

コメントを投稿