Skip to content

Develop on a Raspberry Pi

Jonny Lamb edited this page Apr 16, 2014 · 2 revisions

Maynard is small enough that is can be easily developed on the Raspberry Pi itself.

  1. Install the packaged version of Maynard.
  2. Add this to /etc/apt/sources.list.d/collabora-experimental.list:
# Source packages for Maynard.
deb-src http://raspberrypi.collabora.com wheezy wayland
  1. Install the development packages:
sudo apt-get update
sudo apt-get install git
sudo apt-get build-dep maynard
  1. Get the code:
git clone https://github.com/raspberrypi/maynard.git
  1. Compile Maynard (note that this is going to overwrite the Maynard copy installed from packages):
cd maynard
./autogen.sh --prefix=/usr --libdir=/usr/lib/arm-linux-gnueabihf --libexecdir=/usr/lib/arm-linux-gnueabihf
make
sudo make install
  1. Launch Maynard as usual from outside X:
maynard

To revert to the packaged version of Maynard do:

sudo apt-get install --reinstall maynard
Clone this wiki locally