]> Nishi Git Mirror - sp.git/commitdiff
.
author諏訪子 <suwako@076.moe>
Wed, 29 Nov 2023 23:15:37 +0000 (08:15 +0900)
committer諏訪子 <suwako@076.moe>
Wed, 29 Nov 2023 23:15:37 +0000 (08:15 +0900)
.gitignore
Makefile
README.md

index 324e468e66675cad219c06863398b9120231dc59..e8a713eb409fd702c8a631c0d5fbacd1a960cbf2 100644 (file)
@@ -1,3 +1,4 @@
 sp
 .ccls-cache
 *.o
+*.tar.gz
index 88af5a591332490141244c94f453c4d279ae3793..4c378f5d1ff4dd3bab07c8d9d177991b72ecff37 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,13 @@ all:
 clean:
        rm -f ${NAME}
 
+dist: clean
+       mkdir -p ${NAME}-${VERSION}
+       cp -R LICENSE.txt Makefile README.md CHANGELOG.md\
+               *.c *.h ${NAME}-${VERSION}
+       tar zcfv ${NAME}-${VERSION}.tar.gz ${NAME}-${VERSION}
+       rm -rf ${NAME}-${VERSION}
+
 install: all
        mkdir -p ${DESTDIR}${PREFIX}/bin
        cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
@@ -21,4 +28,4 @@ install: all
 uninstall:
        rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
 
-.PHONY: all clean install uninstall
+.PHONY: all clean dist install uninstall
index 6f8f48cd7b069337e8d8a2cbfd6a3c52194efea6..82aa445f673585c6c9c0958a54c364c4386e0dd0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,42 +5,37 @@
 ### CRUX
 ```sh
 doas prt-get depinst gpgme gnupg pinentry
+doas make install
+```
+
+又は
+
+```sh
+doas su
+cd /etc/ports
+wget https://076.moe/repo/crux/suwaports.httpup
+echo "prtdir /usr/ports/suwaports" >> /etc/prt-get.conf
+ports -u
+prt-get depinst sp
 ```
 
 ### Artix
 ```sh
 doas pacman -S base-devel gpgme gnupg pinentry
+doas make install
 ```
 
 ### OpenBSD
 ```sh
 doas pkg_add gmake gpgme gnupg pinentry
+doas gmake install PREFIX=/usr/local
 ```
 
 ### FreeBSD
 ```sh
 doas pkg install gmake gpgme gnupg pinentry
-```
-
-### 全部
-```sh
-mkdir -p ~/.local/share/sp
-gpg --generate-key
-gpg -k | less
-```
-鍵をコピーして下さい。
-```sh
-echo "(コピーした鍵)" >> ~/.local/share/sp/.gpg-id
-```
-
-### Linux
-```sh
-make
-doas make install
-```
-
-### FreeBSDかOpenBSD
-```sh
-gmake
 doas gmake install PREFIX=/usr/local
 ```
+
+## 初期設定
+「gpg -k」でGPG鍵IDを確認して、「sp -i [GPG ID]」を実行して下さい。