Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/mima/trunk@17 d2428f92-30f9-164c-8098-19ee57ce342c
This commit is contained in:
yakumo.izuru 2023-04-08 00:58:24 +00:00
parent e4ddc8cbbd
commit ed1fcf6b63
6 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
Discordian Public License (DPL) Discordian Public License (DPL)
All Rites Reversed (ĸ) 3188 Aoi Koizumi <novaburst@kalli.st> All Rites Reversed (ĸ) 3189 Izuru Yakumo <yakumo.izuru@chaotic.ninja>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,12 +1,12 @@
PREFIX=/usr/local PREFIX=/usr/local
build: build:
go build -v ./cmd/antifetch go build -v ./cmd/mima
mandoc -T man < ./man/antifetch.1.mdoc > antifetch.1 mandoc -T man < ./man/mima.1.mdoc > mima.1
clean: clean:
rm antifetch antifetch.1 rm mima mima.1
install: install:
install -Dm0755 antifetch ${PREFIX}/bin/antifetch install -Dm0755 mima ${PREFIX}/bin/mima
install -Dm0644 antifetch.1 ${PREFIX}/share/man/man1/antifetch.1 install -Dm0644 mima.1 ${PREFIX}/share/man/man1/mima.1
uninstall: uninstall:
rm ${PREFIX}/bin/antifetch ${PREFIX}/share/man/man1/antifetch.1 rm ${PREFIX}/bin/mima ${PREFIX}/share/man/man1/mima.1

View File

@ -1,4 +1,4 @@
# antifetch # mima
A silly reimplementation of `nofetch(1)` in Go. A silly reimplementation of `nofetch(1)` in Go.
```shell ```shell

View File

@ -1,7 +1,7 @@
// $KyokoNet: antifetch, v 0.1.6 2022/11/15 08:54:00 akoizumi Exp $ // $MirrorWorld: mima, v 0.1.6 2022/11/15 08:54:00 yakumo_izuru Exp $
// //
// Get current system information like neofetch(1) without fancy things. // Get current system information like neofetch(1) without fancy things.
// It mostly uses the standard library, and an extra dependency. // It mostly uses the standard library, and two extra external dependencies.
package main package main
import ( import (

2
go.mod
View File

@ -1,4 +1,4 @@
module marisa.chaotic.ninja/antifetch module marisa.chaotic.ninja/mima
go 1.18 go 1.18