转至:http://ju.outofmemory.cn/entry/56023
首先感谢华中科技大学的同学们的贡献,这篇文章没有什么技术含量,大部分内容MentoHUST的主页上都有介绍,详细可以点击这里。我这里主要介绍一下我在Raspberry Pi树莓派上手动编译以及编译过程中遇到的问题,算是做个备忘。
首先我们需要安装svn工具以便于checkout项目代码:
sudo apt-get install subversion-tools
下一步便是从代码库中Check out,然后运行autogen.sh
配置脚本:
svn checkout http://mentohust.googlecode.com/svn/trunk/ mentohust
cd mentohust
sh autogen.sh
值得注意的是这边会出现失败的情况,所以在执行sh autogen.sh
这条命令前请安装必须的配置或者编译工具:
sudo apt-get install build-essential
sudo apt-get install autopoint
sudo apt-get install automake
sudo apt-get install autoconf
sudo apt-get install gettext-base gettext liblocale-gettext-perl
上述工具缺一不可,否则autogen.sh
配置脚本会报错,例如缺少gettext相关包导致的错误:
macro `AM_GNU_GETTEXT' not found in library
macro `AM_GNU_GETTEXT_VERSION' not found in library
接着,我们需要configure,为下一步编译做准备:
./configure --prefix=/usr
然后经典的make
和make install
上场了:
sudo make
sudo make install
最后设置权限:
sudo chmod u+s /usr/bin/mentohust
当然先别急着运行mentohust,因为有些系统上缺少libpcap或者libnotify会导致程序出错,下面安装这两个库文件:
sudo apt-get install libpcap-dev libnotify-dev
好了,下面可以直接运行mentohust了,Enjoy it!