[arch-commits] Commit in gopass/repos (community-x86_64 community-x86_64/PKGBUILD)

Morten Linderud foxboron at archlinux.org
Sat Dec 16 14:01:41 UTC 2017


    Date: Saturday, December 16, 2017 @ 14:01:40
  Author: foxboron
Revision: 274574

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/
  gopass/repos/community-x86_64/PKGBUILD
    (from rev 274573, gopass/trunk/PKGBUILD)

----------+
 PKGBUILD |   39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 274573, gopass/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-12-16 14:01:40 UTC (rev 274574)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+pkgname=gopass
+pkgver=1.6.5
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/justwatchcom/gopass"
+license=('MIT')
+depends=('gnupg')
+makedepends=('go-pie')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+	    'xsel: clipboard support'
+	    'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/justwatchcom/gopass/archive/v${pkgver}.tar.gz")
+sha256sums=('bac8a09b44321a8bda8f4b2b98eeb0b547f845599c81119a93f8d4c0d9b6c529')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src
+  mv "${pkgname}-${pkgver}"/vendor/* src/
+  mkdir -p src/github.com/justwatchcom
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/justwatchcom/gopass
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 bash.completion "${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  install -Dm644 zsh.completion "${pkgdir}/usr/share/bash/completions/${pkgname}"
+  install -Dm644 fish.completion "${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
+}



More information about the arch-commits mailing list