Skip to content

Instantly share code, notes, and snippets.

@realitygaps
Created May 3, 2015 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save realitygaps/cba2cc947b5f5e0d6a9a to your computer and use it in GitHub Desktop.
Save realitygaps/cba2cc947b5f5e0d6a9a to your computer and use it in GitHub Desktop.
qtpass developer branch archlinux pkgbuild
# Maintainer: realitygaps <realitygaps[at]yahoo[dot]com>
pkgname=qtpass-git
pkgver=0.0.0.1
pkgrel=1
pkgdesc="QtPass is a gui for pass."
url="http://ijhack.github.io/qtpass"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=('pass')
md5sums=("SKIP")
source=("git://github.com/ijhack/qtpass")
build() {
cd "$srcdir/qtpass"
git checkout develop
qmake .
make
}
package() {
install -Dm555 qtpass/qtpass "$pkgdir/usr/local/bin/qtpass"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment