Skip to content
This repository was archived by the owner on Sep 9, 2019. It is now read-only.

Commit 5b0110d

Browse files
committed
Remove "xpi" based installation instructions [skip ci]
1 parent dc25bc0 commit 5b0110d

File tree

1 file changed

+3
-22
lines changed

1 file changed

+3
-22
lines changed

README.md

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,6 @@ XP Language
88

99
XP language is a feature-rich, typed and compiled programming language, based on the popular PHP language and designed to syntactically support features of the XP Framework. The source you write and compile with it can make use of the XP Framework's foundation classes. As the language itself is written in the XP Framework, no binary or proprietary extensions are needed!
1010

11-
Installing
12-
----------
13-
Use the XP Installer to add this module as follows:
14-
15-
```sh
16-
$ cd ~/.xp
17-
18-
# First installation
19-
$ xpi add xp-lang/compiler
20-
21-
# Later on
22-
$ xpi upgrade xp-lang/compiler
23-
```
24-
25-
*Note: It is assumed you are using `~./xp` as path for your globally available XP modules, and have this path inside your xp.ini's `use` statement.*
26-
2711
Getting started
2812
---------------
2913
Like in the XP framework, the entry point is always a class. In their most simple form, these classes have a static main() method. To try it out, create a file called `HelloWorld.xp` with the following contents:
@@ -39,9 +23,6 @@ public class HelloWorld {
3923
Then compile and run it!
4024

4125
```sh
42-
$ xcc HelloWorld.xp
43-
...
44-
4526
$ xp HelloWorld
4627
Hello World!
4728
```
@@ -81,7 +62,7 @@ In order to change XP Language and/or the Compiler **itself**, you need to clone
8162

8263
```sh
8364
$ cd [path]
84-
$ git clone git://github.com/xp-framework/xp-language.git
65+
$ git clone git://github.com/xp-lang/compiler.git
8566
```
8667

8768
### Directory structure
@@ -102,8 +83,8 @@ $ git clone git://github.com/xp-framework/xp-language.git
10283
Add that path to your `use` setting before the global module path inside your `xp.ini`, e.g.:
10384

10485
```ini
105-
use=~/devel/xp-framework/core:~/devel/compiler:~/.xp
106-
^^^^^^^^^^^^^^^^
86+
use=~/devel/xp-framework/core:~/devel/xp-lang/compiler
87+
^^^^^^^^^^^^^^^^^^^^^^^^
10788
```
10889

10990
*On Windows systems, use `;` as separator*

0 commit comments

Comments
 (0)