mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
also several changes: rolled breduce subport into main port added cxx11 1.1 PG which enables build on most systems remove hardcoded deployment target in source refactor Portfile closes: https://trac.macports.org/ticket/55179 closes: https://trac.macports.org/ticket/56375 closes: https://trac.macports.org/ticket/52998 closes: https://trac.macports.org/ticket/57772 closes: https://trac.macports.org/ticket/57592 closes: https://trac.macports.org/ticket/57591
20 lines
277 B
Bash
20 lines
277 B
Bash
#! /bin/sh
|
|
|
|
case `uname -m` in
|
|
i*)
|
|
STORE=16000000
|
|
;;
|
|
x86_64)
|
|
STORE=1000
|
|
;;
|
|
esac
|
|
|
|
MYDIR=`dirname $0`
|
|
export MYDIR
|
|
PSLDIR="$(cd $MYDIR/../libexec/reduce/psl && pwd -P)"
|
|
bin="$PSLDIR/psl/bpsl"
|
|
img="$PSLDIR/red/reduce.img"
|
|
|
|
exec $bin -td $STORE -f $img $@
|
|
|