Skip to content

Instantly share code, notes, and snippets.

@iacchus
Last active June 2, 2017 09:04
Show Gist options
  • Save iacchus/9978487 to your computer and use it in GitHub Desktop.
Save iacchus/9978487 to your computer and use it in GitHub Desktop.
Compile weechat irc on Ubuntu ARMHF - ARMv7

Build weechat (irc client) on a Ubuntu Linux 13.04 (Raring Ringtail) running on an Android Phone

Installing required packages

sudo apt-get install build-essential automake checkinstall
sudo apt-get build-dep weechat

Getting the sources

wget http://www.weechat.org/files/src/weechat-0.4.3.tar.gz

Extracting the sources

tar zxvf weechat-0.4.3.tar.gz

Building and installing

Installing in /usr/local (default)

cd weechat-0.4.3
mkdir build
cd build
cmake ..
make
sudo make install

Installing in custom directory

cd weechat-0.4.3
mkdir build
cd build
cmake .. -DPREFIX=/path/to/directory
make
make install

(use sudo if necessary to install, after compiling)

More info

WeeChat User Docs

http://weechat.org/files/doc/stable/weechat_user.en.html#compile_with_cmake

Ubuntu Docs: Compiling Software

https://help.ubuntu.com/community/CompilingSoftware

@Cocosushi6
Copy link

Cocosushi6 commented Mar 11, 2017

Thanks for this very useful guide :)
EDIT : just noticed there was a ARM-HF .deb package on their download page : here
(It's for raspbian, but I think it should work on ubuntu too ^^)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment