Changes between Version 4 and Version 5 of BuildingFromSource
- Timestamp:
- Nov 30, 2025, 11:29:15 PM (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingFromSource
v4 v5 2 2 == Building from source 3 3 4 === Manually 4 === Prerequisites 5 * [https://ocaml.org ocaml] >=4.14 6 * [https://opam.ocaml.org opam] 7 8 1. Checkout the code repository using [https://subversion.apache.org Subversion] 9 5 10 {{{ 6 11 #!sh 7 12 svn co https://svn.laidback.moe/repo/kosuzu/trunk kosuzu 8 13 cd kosuzu 9 svn co https://svn.laidback.moe/repo/text_parse/trunk text_parse 14 }}} 15 16 2. Fetch the dependencies (this will also check out `text_parse`) 17 18 {{{ 19 #!sh 10 20 make deps 11 make txt12 21 }}} 22 23 24 3. Run `make` and then `make install` 25 26 {{{ 27 #!sh 28 make 29 make install PREFIX=$HOME/.local/bin 30 }}} 31 32 4. Add `$HOME/.local/bin` to your `$PATH` 33 34 5. Profit(?)
