aboutsummaryrefslogtreecommitdiff
path: root/ports/darwin_dmg/HOW_TO_INSTALL.txt
diff options
context:
space:
mode:
authorSteve Mynott <steve.mynott@gmail.com>2016-02-08 18:26:58 +0000
committerSteve Mynott <steve.mynott@gmail.com>2016-02-08 18:26:58 +0000
commit9c53efd7a6372ce394b753807b2930c955aae035 (patch)
tree325c2f6b2ffdd818c5666244897f8a9b6f19bc3b /ports/darwin_dmg/HOW_TO_INSTALL.txt
parentefd255b0bd5f023b4b55bfde5b7dcf26cd5a6e2a (diff)
Start to bring back R* Mac dmg binary build from dead
- remove parrot specific workarounds and add simple Configure - Rename target directory Rakudo like the Windows build build - Comment out Rez and remove unused option - Increase temp file system size so precomp files fit - Now works with some hand holding
Diffstat (limited to 'ports/darwin_dmg/HOW_TO_INSTALL.txt')
-rw-r--r--ports/darwin_dmg/HOW_TO_INSTALL.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ports/darwin_dmg/HOW_TO_INSTALL.txt b/ports/darwin_dmg/HOW_TO_INSTALL.txt
index ac33a06..fb0ae32 100644
--- a/ports/darwin_dmg/HOW_TO_INSTALL.txt
+++ b/ports/darwin_dmg/HOW_TO_INSTALL.txt
@@ -1,6 +1,6 @@
-1. Drag the Rakudo_Star folder onto the Applications folder.
+1. Drag the Rakudo folder onto the Applications folder.
2. In a Terminal window, type this command:
- alias p6='/Applications/Rakudo_Star/bin/perl6'
+ alias p6='/Applications/Rakudo/bin/perl6'
( This step only affects this one window; to make available to all
future sessions, add the line to your ~/.bash_profile file. )
@@ -13,9 +13,9 @@ Try this:
p6 -e 'say "Hello, world!";'
You can always skip the alias and use the full path:
- /Applications/Rakudo_Star/bin/perl6 -e 'say "Hello, world!";'
+ /Applications/Rakudo/bin/perl6 -e 'say "Hello, world!";'
or alternately, add Rakudo Star to your path:
- PATH=$PATH:/Applications/Rakudo_Star/bin
+ PATH=$PATH:/Applications/Rakudo/bin
perl6 -e 'say "Hello, world!";'
-See also README in /Applications/Rakudo_Star/docs/rakudo/README .
+See also README in /Applications/Rakudo/docs/rakudo/README .