11 lines
132 B
Bash
11 lines
132 B
Bash
#!/bin/sh
|
|
|
|
# $Id$
|
|
|
|
set -e
|
|
cd $PKGDIR
|
|
|
|
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
|
|
make prefix=/usr install
|
|
|
|
exit
|