forked from mkarir/flamingo
-
Notifications
You must be signed in to change notification settings - Fork 0
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.
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
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
$ 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