#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxcairo() { gnxunwrap ${1} gnxfilelist start ${1} ./autogen.sh gnxconfigure --prefix=${PREFIX} gnxmake if [ "${2}" == "check" ]; then gnxmake check fi gnxmake install gnxfilelist finish ${1} } #eof