Changes between Version 2 and Version 3 of BuildingFromSource


Ignore:
Timestamp:
Apr 21, 2025, 1:56:01 PM (7 weeks ago)
Author:
Izuru Yakumo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingFromSource

    v2 v3  
    22== Building from source
    33
    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
     7svn co https://svn.yakumo.dev/repo/kosuzu/trunk kosuzu
     8cd kosuzu
     9svn co https://svn.yakumo.dev/repo/text_parse/trunk text_parse
     10make deps
     11make txt
     12}}}
     13
     14=== With [https://opam.ocaml.org opam]
    915
    1016{{{
    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
     18opam pin add git+https://git.yakumo.dev/yakumo.izuru/text_parse
     19opam pin add git+https://git.yakumo.dev/yakumo.izuru/kosuzu
     20eval $(opam env)
    1421}}}
     22
     23=== With [https://pkgsrc.org pkgsrc]
     24See [https://gt.kalli.st/novaburst/pkgsrc novaburst/pkgsrc at gt kallist]