Changes between Version 2 and Version 3 of BuildingFromSource
- Timestamp:
- Apr 21, 2025, 1:56:01 PM (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingFromSource
v2 v3 2 2 == Building from source 3 3 4 === Requirements 5 * [https://dune.build dune] 6 * [https://git-scm.com git] 7 * [https://ocaml.org ocaml] (>=4.13) 8 * [https://opam.ocaml.org opam] 4 === Manually 5 {{{ 6 #!sh 7 svn co https://svn.yakumo.dev/repo/kosuzu/trunk kosuzu 8 cd kosuzu 9 svn co https://svn.yakumo.dev/repo/text_parse/trunk text_parse 10 make deps 11 make txt 12 }}} 13 14 === With [https://opam.ocaml.org opam] 9 15 10 16 {{{ 11 $ opam pin add git+https://git.yakumo.dev/yakumo.izuru/text_parse 12 $ opam pin add git+https://git.yakumo.dev/yakumo.izuru/kosuzu 13 $ eval $(opam env) 17 #!sh 18 opam pin add git+https://git.yakumo.dev/yakumo.izuru/text_parse 19 opam pin add git+https://git.yakumo.dev/yakumo.izuru/kosuzu 20 eval $(opam env) 14 21 }}} 22 23 === With [https://pkgsrc.org pkgsrc] 24 See [https://gt.kalli.st/novaburst/pkgsrc novaburst/pkgsrc at gt kallist]