Skip to content

3.1 Building On Modern Linux

Mark King edited this page Oct 9, 2024 · 1 revision

On this page, we discuss building on Arch Linux as of 2024-10-09.

Getting Ready

Building flow-tools

Install prerequisites

# pacman -Sy base-devel libtool flex

Clone and build flow-tools

$ git clone https://github.com/5u623l20/flow-tools.git
$ cd flow-tools
$ libtoolize
$ autoreconf
$ automake --add-missing
$ ./configure
$ make
# make install

Building Flamingo

Install Dependencies

libglade

$ git clone https://aur.archlinux.org/libglade.git
$ cd libglade
$ makepkg -sci

gtkglext

$ git clone https://aur.archlinux.org/gtkglext.git
$ cd gtkglext
$ makepkg -sci

Building

$ git clone https://github.com/Merit-Research/flamingo.git
$ cd flamingo
$ ./configure CFLAGS='-I/usr/local/flow-tools/include -L/usr/local/flow-tools/lib'
$ make
# make install
Clone this wiki locally