Adding new-old files.
This commit is contained in:
parent
610b3fe35b
commit
776d37c241
3 changed files with 40 additions and 0 deletions
13
build-autoconf.sh
Executable file
13
build-autoconf.sh
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Nico Schottelius <nico-linux@schottelius.org>
|
||||||
|
# Date: 17-Sep-2005
|
||||||
|
# Last Modified: -
|
||||||
|
#
|
||||||
|
|
||||||
|
[ $# -eq 1 ] || exit 23
|
||||||
|
|
||||||
|
PACKAGE=$1; shift
|
||||||
|
PREFIX=/usr/packages/$PACKAGE
|
||||||
|
|
||||||
|
./configure --prefix=$PREfIX $@ && make
|
13
build-make+prefix.sh
Executable file
13
build-make+prefix.sh
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Nico Schottelius <nico-linux@schottelius.org>
|
||||||
|
# Date: 17-Sep-2005
|
||||||
|
# Last Modified: -
|
||||||
|
#
|
||||||
|
|
||||||
|
[ $# -eq 1 ] || exit 23
|
||||||
|
|
||||||
|
PACKAGE=$1; shift
|
||||||
|
PREFIX=/usr/packages/$PACKAGE
|
||||||
|
|
||||||
|
make prefix=$PREFIX
|
14
compile.package
Normal file
14
compile.package
Normal file
|
@ -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}"
|
Loading…
Add table
Reference in a new issue