Changeset 27 in code
Legend:
- Unmodified
- Added
- Removed
-
trunk/.gitignore
r6 r27 1 * 1 !/cmd/suwako 2 suwako -
trunk/COPYING
r1 r27 1 Freedom License v1 (2021年08月17日) 2 3 全く無限的自由です。 4 It's infinite freedom. 1 /* 2 * ---------------------------------------------------------------------------- 3 * "THE BEER-WARE LICENSE" (Revision 42.1): 4 * <yakumo.izuru@chaotic.ninja> wrote this file. As long as you retain this notice you 5 * can do whatever you want with this stuff. If we meet some day, and you think 6 * this stuff is worth it, you can buy me a bottle of sake in return Izuru Yakumo 7 * ---------------------------------------------------------------------------- 8 */ -
trunk/Makefile
r20 r27 1 1 PREFIX ?= /usr/local 2 2 3 GOARCH ?= amd644 3 GOFLAGS ?= -v -ldflags "-w -X `go list`.Version=${VERSION} -X `go list`.Commit=${COMMIT} -X `go list`.Build=${BUILD}" -tags "static_build" 5 GOOS ?= linux6 4 7 5 BRANCH = `git rev-parse --abbrev-ref HEAD` … … 19 17 install -Dm0755 suwako ${PREFIX}/bin/suwako 20 18 install -Dm0644 suwako.1 ${PREFIX}/share/man/man1/suwako.1 19 install -Dm0644 suwako.conf.5 ${PREFIX}/share/man/man5/suwako.conf.5 21 20 uninstall: 22 21 rm -f ${PREFIX}/bin/suwako -
trunk/README.md
r25 r27 8 8 9 9 **suwako** 10 **-f** *from* 11 **-t** *to* 12 *input* 10 \[**-f** *from*] 11 \[**-t** *to*] 12 \[*input*] 13 13 14 14 # DESCRIPTION … … 19 19 It fully serves 20 20 as a drop-in replacement. 21 22 # CONFIGURATION23 24 **suwako**25 takes two variables, those being26 `SUWAKO_INSTANCE`27 and28 `SUWAKO_ENGINE`29 30 Both must be filled and placed31 on ~/.suwako/suwako.conf32 21 33 22 # USAGE … … 46 35 > Text to be translated 47 36 37 # SEE ALSO 38 39 suwako.conf(5) 40 48 41 # AUTHORS 49 42 50 43 Izuru Yakumo <[yakumo.izuru@chaotic.ninja](mailto:yakumo.izuru@chaotic.ninja)> 51 44 52 FreeBSD 13.2-RELEASE-p1 - October 21, 2023 45 # BUGS 46 47 You cannot translate the string "version", this is 48 a direct consequence of using flaggy. 49 50 FreeBSD 13.2-RELEASE-p4 - December 16, 2023 -
trunk/suwako.1
r26 r27 7 7 .Sh SYNOPSIS 8 8 .Nm 9 . Fl f Ar from10 . Fl t Ar to11 . Ar input9 .Op Fl f Ar from 10 .Op Fl t Ar to 11 .Op Ar input 12 12 .Sh DESCRIPTION 13 13 Self-explanatory, besides, this was made as … … 16 16 It fully serves 17 17 as a drop-in replacement. 18 .Sh CONFIGURATION19 .Nm20 takes two keys, those being21 .Ev instance22 and23 .Ev engine24 .Pp25 Both must be filled and placed26 on ~/.suwako/suwako.conf27 18 .Sh USAGE 28 19 .Bl -tag -width 11n -compact … … 35 26 Text to be translated 36 27 .El 28 .Sh SEE ALSO 29 .Xr suwako.conf 5 37 30 .Sh AUTHORS 38 31 .An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja
Note:
See TracChangeset
for help on using the changeset viewer.