summaryrefslogtreecommitdiff
path: root/community/kwalletcli/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-29 00:01:17 +0000
committerroot <root@rshg054.dnsready.net>2012-03-29 00:01:17 +0000
commit44ded298ebb49500d321ac79b7d0d8bb4d5058ec (patch)
tree62011c680c3a7a6dbdf4791b1eec2a23daab7b3a /community/kwalletcli/PKGBUILD
parenta26ce336126d18cde915c2331250b8dfbffc24f8 (diff)
Thu Mar 29 00:01:17 UTC 2012
Diffstat (limited to 'community/kwalletcli/PKGBUILD')
-rw-r--r--community/kwalletcli/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/kwalletcli/PKGBUILD b/community/kwalletcli/PKGBUILD
new file mode 100644
index 000000000..803b85750
--- /dev/null
+++ b/community/kwalletcli/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Jens Adam (byte/jra) <j_adam@web.de>
+
+pkgname=kwalletcli
+pkgver=2.11
+pkgrel=1
+pkgdesc="Command-Line Interface for the KDE Wallet"
+url="http://www.mirbsd.org/kwalletcli.htm"
+license=('custom:MirOS' 'LGPL3')
+arch=('i686' 'x86_64')
+depends=('kdebase-runtime' 'mksh')
+optdepends=('gnupg2' 'openssh' 'pinentry')
+source=("http://www.mirbsd.org/MirOS/dist/hosted/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('bf5c0bc1608041dd637f0e8e5e4f8586')
+
+build() {
+ cd "${srcdir}"/${pkgname}
+ KDE_VER=4 KDE_INCS="-I/usr/include/Qt -I/usr/include/QtCore" make -e
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}
+ install -d "${pkgdir}"/usr/{bin,share/man/man1}
+ for F in kwalletaskpass kwalletcli kwalletcli_getpin pinentry-kwallet; do
+ install ${F} "${pkgdir}"/usr/bin/${F}
+ install -m644 ${F}.1 "${pkgdir}"/usr/share/man/man1/${F}.1
+ done
+ install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENCE
+}