parent
593967f857
commit
530c05226e
|
@ -1,15 +1,19 @@
|
|||
source misc/version.sh
|
||||
|
||||
TARGET=$1
|
||||
|
||||
if [ "$TARGET" = "x86" ]; then
|
||||
CPU="x86.32"
|
||||
else
|
||||
CPU="ppc"
|
||||
CPU="macosx-ppc"
|
||||
fi
|
||||
|
||||
make macosx-$TARGET
|
||||
Factor.app/Contents/MacOS/factor -i=boot.$CPU.image -no-user-init
|
||||
BOOT_IMAGE=boot.$CPU.image
|
||||
wget http://factorcode.org/images/$VERSION/$BOOT_IMAGE
|
||||
|
||||
make macosx-$TARGET
|
||||
Factor.app/Contents/MacOS/factor -i=$BOOT_IMAGE -no-user-init
|
||||
|
||||
VERSION=0.91
|
||||
DISK_IMAGE_DIR=Factor-$VERSION
|
||||
DISK_IMAGE=Factor-$VERSION-$TARGET.dmg
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
source misc/version.sh
|
||||
rm -rf .git
|
||||
cd ..
|
||||
tar cfz Factor-$VERSION.tgz factor/
|
|
@ -0,0 +1 @@
|
|||
export VERSION=0.91
|
|
@ -1,5 +1,6 @@
|
|||
source misc/version.sh
|
||||
|
||||
CPU=$1
|
||||
VERSION=0.91
|
||||
|
||||
if [ "$CPU" = "x86" ]; then
|
||||
FLAGS="-no-sse2"
|
||||
|
|
Loading…
Reference in New Issue