13 lines
196 B
Bash
Executable file
13 lines
196 B
Bash
Executable file
#!/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
|