]> Nishi Git Mirror - sp.git/commitdiff
make install-zsh部分を修正 sp-1.1.1
author諏訪子 <suwako@076.moe>
Fri, 1 Dec 2023 03:41:36 +0000 (12:41 +0900)
committer諏訪子 <suwako@076.moe>
Fri, 1 Dec 2023 03:41:36 +0000 (12:41 +0900)
CHANGELOG.md
Makefile
README.md
main.c

index 0274411b6697b86d6ba55bb9f1e882111e6af587..bd31986c5b44b24f723669e9f5b4eba6625975f4 100644 (file)
@@ -1,3 +1,6 @@
+# 1.1.1
+* make install-zsh部分を修正
+
 # 1.1.0
 * TOTP対応
 * READMEファイルで使い方を詳しく説明する
index 91cdcb110751f8a71d53f6a005509965033d0f8f..3d22c6c725b704adef2bc8ce824aa7ec95f1db50 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 NAME=sp
-VERSION=1.1.0
+VERSION=1.1.1
 # Linux、Haiku、かIllumos = /usr、FreeBSDかOpenBSD = /usr/local、NetBSD = /usr/pkg
 PREFIX=/usr
 CC=cc
@@ -27,7 +27,7 @@ install: all
        chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
 
 install-zsh:
-       cp sp-completion.zsh /usr/share/zsh/site-functions/_sp
+       cp sp-completion.zsh ${DESTDIR}${PREFIX}/share/zsh/site-functions/_sp
 
 uninstall:
        rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
index d7502a2df58336826ac146da16de6f9773367ea8..5d9bf3c51174e1a410cf44c434e0ad0425394d13 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@
 ```sh
 doas prt-get depinst gpgme gnupg pinentry
 doas make install
+doas make install-zsh
 ```
 
 又は
@@ -23,18 +24,21 @@ prt-get depinst sp
 ```sh
 doas pacman -S base-devel gpgme gnupg pinentry
 doas make install
+doas make install-zsh
 ```
 
 ### OpenBSD
 ```sh
 doas pkg_add gmake gpgme gnupg pinentry
 doas gmake install PREFIX=/usr/local
+doas gmake install-zsh PREFIX=/usr/local
 ```
 
 ### FreeBSD
 ```sh
 doas pkg install gmake gpgme gnupg pinentry
 doas gmake install PREFIX=/usr/local
+doas gmake install-zsh PREFIX=/usr/local
 ```
 
 ## 初期設定
diff --git a/main.c b/main.c
index ad3e1c4f9e720c4c6c74ac6fb3da6fa7851c7e70..89d5e7ee33516850ea5eb0cfd0936ce14b491539 100644 (file)
--- a/main.c
+++ b/main.c
@@ -16,7 +16,7 @@
 void helpme();
 
 const char* sofname = "sp";
-const char* version = "1.1.0";
+const char* version = "1.1.1";
 
 void helpme() {
   printf("076 sp - シンプルなパスワードマネージャー\n");