diff --git a/build-autoconf.sh b/build-autoconf.sh new file mode 100755 index 0000000..e5ed06e --- /dev/null +++ b/build-autoconf.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# +# Nico Schottelius +# Date: 17-Sep-2005 +# Last Modified: - +# + +[ $# -eq 1 ] || exit 23 + +PACKAGE=$1; shift +PREFIX=/usr/packages/$PACKAGE + +./configure --prefix=$PREfIX $@ && make diff --git a/build-make+prefix.sh b/build-make+prefix.sh new file mode 100755 index 0000000..51b22f2 --- /dev/null +++ b/build-make+prefix.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# +# Nico Schottelius +# Date: 17-Sep-2005 +# Last Modified: - +# + +[ $# -eq 1 ] || exit 23 + +PACKAGE=$1; shift +PREFIX=/usr/packages/$PACKAGE + +make prefix=$PREFIX diff --git a/compile.package b/compile.package new file mode 100644 index 0000000..a292309 --- /dev/null +++ b/compile.package @@ -0,0 +1,14 @@ +#!/bin/sh +# cLinux +# Nico Schottelius (nico-linux@schottelius.org) +# 2005-03-27 +# build a standard package + +[ $# -ne 1 ] && exit 1 + +PRE_PREFIX=/usr/packages +PKGDL=$1 + +PREFIX=${PRE_PREFIX}/${PKGDL} + +./configure "--prefix=${PREFIX}"