summaryrefslogtreecommitdiff
path: root/libre/khotkeys
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-09-19 00:12:51 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-09-19 00:12:51 -0300
commitafcfdd89f42de66210908b42c324da9a3488b4de (patch)
treec45351ed213f07e0353955cac1960eb0026d1bbf /libre/khotkeys
parente988bf4158eee605bf4bcf0bf574097c322583de (diff)
downloadabslibre-afcfdd89f42de66210908b42c324da9a3488b4de.tar.gz
abslibre-afcfdd89f42de66210908b42c324da9a3488b4de.tar.bz2
abslibre-afcfdd89f42de66210908b42c324da9a3488b4de.zip
khotkeys: add new package to [libre] - Freedom issue #1103 -> https://labs.parabola.nu/issues/1103
Diffstat (limited to 'libre/khotkeys')
-rw-r--r--libre/khotkeys/PKGBUILD44
1 files changed, 44 insertions, 0 deletions
diff --git a/libre/khotkeys/PKGBUILD b/libre/khotkeys/PKGBUILD
new file mode 100644
index 000000000..e36590d8a
--- /dev/null
+++ b/libre/khotkeys/PKGBUILD
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 276224 2016-09-13 15:50:16Z arojas $
+# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
+# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
+# Contributor (Arch): Antonio Rojas
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+pkgname=khotkeys
+pkgver=5.7.5
+pkgrel=1.parabola1
+pkgdesc='KHotKeys, with DuckDuckGo HTML support'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('plasma-workspace')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
+conflicts=('kdebase-workspace')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('efca5ead90388e3ef8ad0612e7c035414340da5273dd486918af25b3e2fca430'
+ 'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell
+ '348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon
+ 'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+ mkdir -p build
+ cd ${pkgname}-${pkgver}
+ sed -i 's|google[.]com|duckduckgo.com/html|' data/defaults.khotkeys
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DKDE_INSTALL_LIBDIR=lib \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}