#!/bin/bash # This script will make and install everything, as well as create # all rpms ./autogen.sh version=`cat configure | grep "VERSION=" | grep -v PACKAGE_VERSION | sed -e 's/VERSION=//g' | sed -e 's/ //g'` srcdir=`pwd` make clean autoconf ./configure make for dir in ${srcdir}/plugins/*; do cd ${dir} make clean autoconf ./configure make done cd ${srcdir} echo Becoming root to \"make install\" and build RPMs: su -c ./makeallroot