Package Details: himitsu-git r157.c657d70-1

Git Clone URL: https://aur.archlinux.org/himitsu-git.git (read-only, click to copy)
Package Base: himitsu-git
Description: Himitsu is a secret storage system for Unix systems
Upstream URL: https://sr.ht/~sircmpwn/himitsu
Licenses: GPL-3.0
Provides: himitsu
Submitter: fossdd
Maintainer: apreiml
Last Packager: apreiml
Votes: 0
Popularity: 0.000000
First Submitted: 2022-04-28 16:52 (UTC)
Last Updated: 2023-11-28 07:30 (UTC)

Dependencies (3)

Required by (4)

Sources (2)

Latest Comments

TrialnError commented on 2023-11-09 17:12 (UTC) (edited on 2023-11-09 17:13 (UTC) by TrialnError)

This needs some adjustments as there was for example the following change:

The himitsu-init command has been renamed to himitsu-store

Edit: Or update the PKGBUILD like suggested by apreiml

apreiml commented on 2023-06-13 11:34 (UTC) (edited on 2023-06-13 11:34 (UTC) by apreiml)

hiprompt-gtk-git is an optional dependency and the man pages are missing install. Can you add the following changes?

diff --git a/.SRCINFO b/.SRCINFO
index 4f8ab42..223cd6a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
 pkgbase = himitsu-git
    pkgdesc = Himitsu is a secret storage system for Unix systems
-   pkgver = r96.414e5c3
+   pkgver = r139.ae7ff57
    pkgrel = 1
    url = https://sr.ht/~sircmpwn/himitsu
    arch = x86_64
    license = GPL-3.0
    makedepends = hare-git
-   makedepends = hiprompt-gtk-git
+   optdepends = hiprompt-gtk-py: prompter support (GTK+)
    provides = himitsu
    source = git+https://git.sr.ht/~sircmpwn/himitsu
    sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 0d8fc03..e02ec5d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,15 @@
 # Maintainer: fossdd <fossdd@pwned.life>
 pkgname=himitsu-git
 _pkgname=${pkgname%-git}
-pkgver=r96.414e5c3
+pkgver=r139.ae7ff57
 pkgrel=1
 pkgdesc='Himitsu is a secret storage system for Unix systems'
 url='https://sr.ht/~sircmpwn/himitsu'
 license=(GPL-3.0)
 arch=(x86_64)
 depends=()
-makedepends=(hare-git hiprompt-gtk-git)
+makedepends=(hare-git)
+optdepends=('hiprompt-gtk-py: prompter support (GTK+)')
 conflicts=()
 provides=(himitsu)
 source=("git+https://git.sr.ht/~sircmpwn/himitsu")
@@ -31,7 +32,5 @@ check() {

 package() {
   cd "$_pkgname"
-  install -Dm755 "himitsu-init" "$pkgdir/usr/bin/himitsu-init"
-  install -Dm755 "himitsud" "$pkgdir/usr/bin/himitsud"
-  install -Dm755 "hiq" "$pkgdir/usr/bin/hiq"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
 }