码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 13.10 编译安装conkeror

时间:2014-12-04 23:17:25      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:emacs   conkeror   browser   

conkeror几年前我用过,还是一个不错的浏览器,这次因为笔记本只支持Ubuntu 13.10, 而不支持更新版本,就尝试着在Ubuntu 13.10上安装最新conkeror,但是没想到居然没有安装源。于是就编译吧,

当然还是要首先clone到源代码:

git clone git://repo.or.cz/conkeror.git

然后根据官方文档的提示:

To build your own Conkeror package, install fakeroot, quilt, and debhelper, then enter the directory of your Conkeror git clone and run:
fakeroot debian/rules binary


一切顺利。然后要复制目录:

sudo cp -r ./debian/conkeror/usr/share/conkeror /usr/share/

还要修改一下配置文件:我的代码目录是/opt/conkeror, 所以打开下面的文件

/opt/conkeror/debian/bin/conkeror
将一开始的值设置为

#!/bin/sh
# Wrapper around xulrunner/firefox to start the xulrunner application conkeror
# Written by Axel Beckert <abe@deuxchevaux.org> for the Debian Project

# Find an appropriate xulrunner binary
XULRUNNER=‘firefox -app‘

好了,现在创建链接:

ln -s /opt/conkeror/debian/bin/conkeror /usr/bin/conkeror

好了,运行命令,可以看到漂亮的浏览器了。

bubuko.com,布布扣


学习快捷键吧,将之设置为emacs默认浏览器。

在init.el中设置

;; browser
(setq browse-url-browser-function ‘browse-url-generic browse-url-generic-program "conkeror")

现在在emacs中点击链接,conkeror启动了。


ubuntu 13.10 编译安装conkeror

标签:emacs   conkeror   browser   

原文地址:http://blog.csdn.net/csfreebird/article/details/41732375

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!