Changes between Initial Version and Version 1 of GettingStartedWithPlumage

Show
Ignore:
Timestamp:
01/13/11 21:58:04 (11 years ago)
Author:
tadzik
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GettingStartedWithPlumage

    v1 v1  
     1= Plumage = 
     2 
     3Plumage is the Parrot VM module ecosystem. It includes tools to search the ecosystem, 
     4browse the module metadata, install modules, and so forth. 
     5 
     6The ecosystem currently includes various compilers targetting Parrot VM, libraries, 
     7language bindings and more. 
     8 
     9= Getting Plumage = 
     10 
     11The Plumage repo is located on Github (https://github.com/parrot/plumage). You can either 
     12download a tarball or simply clone the repository with `git clone git://github.com/parrot/plumage.git`. 
     13To build plumage, execute 
     14{{{ 
     15parrot setup.pir build 
     16parrot setup.pir test # optional, to see if everything is working properly 
     17parrot setur.pir install 
     18}}} 
     19 
     20You may need a root access in the last step, depending on where your Parrot is located. 
     21Plumage will install itself into the Parrot directory tree. After that, you're ready to go. 
     22 
     23= Usage = 
     24 
     25To show a list of projects, use `plumage projects`. After choosing the one you want to install, simply 
     26run `plumage install <project>`. This will build, test and install the desired project into the Parrot 
     27directory tree. 
     28 
     29For more usage information run `plumage usage`