- Timestamp:
- Aug 22, 2024, 4:32:00 PM (8 months ago)
- Location:
- trunk
- Files:
-
- 28 added
- 22 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r68 r73 1 1 OS=`uname -s` 2 2 MACHINE=`uname -m` 3 DATE=`date -r _build/default/c li/txt.exe +%Y%m%d`3 DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d` 4 4 COMMIT=`git rev-parse --short HEAD` 5 5 PREFIX=/usr/local … … 12 12 deps: 13 13 @opam install dune ocurl cmdliner msgpck 14 cli:15 @dune build c li/txt.exe14 txt: 15 @dune build cmd/txt/txt.exe 16 16 clean: 17 17 @dune clean 18 18 dist: 19 19 @dune build 20 @cp _build/default/c li/txt.exe txt.exe20 @cp _build/default/cmd/txt/txt.exe txt.exe 21 21 @strip txt.exe 22 @tar czvf " logarion-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt22 @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt 23 23 @rm txt.exe 24 25 txt_init: 26 @dune build cmd/txt_init/txt_init.exe 24 27 install: 25 28 @dune install --prefix ${PREFIX} 26 29 uninstall: 27 30 @dune uninstall --prefix ${PREFIX} 28 .PHONY: cli31 .PHONY: txt txt_init -
trunk/README.md
r48 r73 1 # Logarion 2 Text archival and exchange. 1  2 3 # Kosuzu 4 Text archival and exchange, named after [Kosuzu Motoori](https://en.touhouwiki.net/wiki/Kosuzu_Motoori) from [Forbidden Scrollery](https://en.touhouwiki.net/wiki/Forbidden_Scrollery). 3 5 4 6 ## Contact 5 * [Mailing list](https://lists.tildeverse.org/postorius/lists/logarion.lists.tildeverse.org/) 6 7 ## References 8 * [Building from source](https://logarion.chaotic.ninja/9egbae.htm) 9 * [Creating texts & publishing on the net](https://logarion.chaotic.ninja/hvhhwf.htm) 10 * [Exploring & pulling texts from Logarion repositories](https://logarion.chaotic.ninja/3sqd84.htm) 11 * [Header format](https://logarion.chaotic.ninja/d41e68.htm) 12 * [Txt uniform resource names](https://logarion.chaotic.ninja/h1a9tg.htm) 13 14 ## Maintainers 15 * orbifx (original author, former maintainer) 16 * Izuru Yakumo (contributor, current maintainer) 7 * [Mailing list](mailto:kosuzu-dev@chaotic.ninja) -
trunk/dune-project
r70 r73 1 1 (lang dune 2.0) 2 (name logarion)2 (name kosuzu) 3 3 (version 1.4.3) 4 4 (license EUPL-1.2) 5 5 (authors "orbifx <fox@orbitalfox.eu>") 6 (bug_reports "mailto: logarion-dev@chaotic.ninja")6 (bug_reports "mailto:kosuzu-dev@chaotic.ninja") 7 7 (maintainers "Izuru Yakumo <yakumo.izuru@chaotic.ninja>") 8 (homepage "https://suzunaan.chaotic.ninja/ logarion/")9 (source (uri git+https://git.chaotic.ninja/yakumo.izuru/ logarion))8 (homepage "https://suzunaan.chaotic.ninja/kosuzu/") 9 (source (uri git+https://git.chaotic.ninja/yakumo.izuru/kosuzu)) 10 10 11 11 (generate_opam_files true) 12 12 13 13 (package 14 (name logarion)14 (name kosuzu) 15 15 (synopsis "Texts archival and exchange") 16 16 (depends ocaml dune ocurl msgpck cmdliner)) -
trunk/lib/dune
r3 r73 1 1 (library 2 (name logarion)3 (public_name logarion)2 (name kosuzu) 3 (public_name kosuzu) 4 4 (libraries text_parse text_parse.parsers unix str msgpck))
Note:
See TracChangeset
for help on using the changeset viewer.