desktop/ksuperkey/PKGBUILD

26 lines
734 B
Bash
Raw Normal View History

2013-03-06 12:05:35 +08:00
pkgname=ksuperkey
2015-08-15 22:24:11 +08:00
pkgver=0.4
pkgrel=6
2013-03-06 12:05:35 +08:00
pkgdesc="Allows you to open the application launcher in KDE Plasma Desktop using the Super key"
2016-01-05 06:01:00 +08:00
url="https://github.com/hanschen/ksuperkey"
2013-03-06 12:05:35 +08:00
license=('GPL3')
arch=('x86_64')
2015-08-15 22:24:11 +08:00
depends=('libxtst')
source=("https://github.com/hanschen/ksuperkey/archive/v$pkgver.tar.gz"
"ksuperkey.desktop")
sha256sums=('0d202c0c7bc9a6eab5ce4f4049545df5ed277af9448361d94a5b725b864fcbbe'
'0ae36764adb926a1ec2f6a602a2082960113719e8362b2da769754b4dda67c30')
2013-03-06 12:05:35 +08:00
build() {
cd "${srcdir}"/$pkgname-$pkgver
make
}
package() {
cd "${srcdir}"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -D ksuperkey.desktop $pkgdir/etc/xdg/autostart/ksuperkey.desktop
2013-03-06 12:05:35 +08:00
}