Index: trunk/php/luasandbox/README |
— | — | @@ -4,3 +4,19 @@ |
5 | 5 | $ ./configure |
6 | 6 | $ make |
7 | 7 | |
| 8 | +It requires a few dependencies: |
| 9 | + |
| 10 | + luajit - LUA just in time compiler. http://www.luajit.org/ |
| 11 | + ICU - set of libraries providing Unicode and Globalization support |
| 12 | + |
| 13 | +== Mac OS X == |
| 14 | + |
| 15 | +Using brew: |
| 16 | + brew install luajit |
| 17 | + brew install icu4c |
| 18 | + # Formula being keg-only, you need to link it manually |
| 19 | + brew link icu4c |
| 20 | + |
| 21 | +That will makes pkg-config files available. Check them using: |
| 22 | + ls -l `brew --prefix/lib/pkgconfig/icu*pc` |
| 23 | + |