Initial import

This commit is contained in:
Rasmus Steinke 2015-06-08 19:44:27 +02:00
parent 7e376b5ec6
commit 970db84d03
3 changed files with 56 additions and 0 deletions

20
PKGBUILD/git/.SRCINFO Normal file
View File

@ -0,0 +1,20 @@
pkgbase = rofi-pass-git
pkgdesc = bash script to handle pass storages in a convenient way
pkgver = 5.f4255a9
pkgrel = 1
url = https://github.com/carnager/rofi-pass
install = rofi-pass.install
arch = any
license = GPL
makedepends = git
depends = xorg-xprop
depends = wmctrl
depends = rofi-git
depends = pass
depends = xdotool
depends = xclip
source = git+http://git.53280.de/rofi-pass
md5sums = SKIP
pkgname = rofi-pass-git

28
PKGBUILD/git/PKGBUILD Normal file
View File

@ -0,0 +1,28 @@
# Maintainer: Rasmus Steinke <rasi at xssn dot at>
pkgname=rofi-pass-git
_pkgname=rofi-pass
pkgver=5.f4255a9
pkgrel=1
pkgdesc="bash script to handle pass storages in a convenient way"
arch=('any')
url='https://github.com/carnager/rofi-pass'
license=('GPL')
depends=('xorg-xprop' 'wmctrl' 'rofi-git' 'pass' 'xdotool' 'xclip')
install=('rofi-pass.install')
makedepends=('git')
source=('git+http://git.53280.de/rofi-pass')
pkgver() {
cd ${_pkgname}
printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd ${_pkgname}
make DESTDIR="$pkgdir/" \
PREFIX='/usr' \
install
}
md5sums=('SKIP')

View File

@ -0,0 +1,8 @@
#!/bin/bash
post_install() {
echo '
Global config file is installed in /etc/rofi-pass.conf
To make user modifications copy it to $HOME/.config/rofi-pass/config
'
}
#post_install