mirror of
https://git.freebsd.org/ports.git
synced 2025-07-02 18:10:38 -04:00
16 lines
224 B
Bash
16 lines
224 B
Bash
#! /bin/sh
|
|
|
|
case `uname -m` in
|
|
amd64)
|
|
STORE=2000
|
|
;;
|
|
i386)
|
|
STORE=16000000
|
|
;;
|
|
esac
|
|
|
|
bin="/usr/local/share/reduce/psl/bpsl"
|
|
img="/usr/local/share/reduce/red/reduce.img"
|
|
|
|
exec $bin -td $STORE -f $img $*
|
|
|