# Note: depends on autoconf
wget -c http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-1.5.tar.gz
tar -xzf bridge-utils-1.5.tar.gz
cd bridge-utils-1.5
# Work around incomplete linux headers
sed -i -e '1i#include <netinet/in.h>' */*.c
autoconf
./configure --prefix="/usr"
make KERNEL_HEADERS='' # You are not a kernel module!
make install KERNEL_HEADERS=''