You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
947 B
Bash
37 lines
947 B
Bash
# Maintainer: Ruakij <ruakij@ruekov.eu>
|
|
# FIXME: This doesnt install as Build-files cannot/should not edit files in home-directories. Some other way has to be found.
|
|
pkgname=kde_screensaver_suspendscreen-git
|
|
pkgver=v1.2.4.r0.g2e069fc
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc="KDE X11 event-script to have different screen-timeouts when session is locked vs unlocked"
|
|
arch=('any')
|
|
url="https://github.com/Ruakij/kde_screensaver_suspendscreen"
|
|
license=('AGPL3')
|
|
groups=()
|
|
depends=('xorg-xset' 'kconfig')
|
|
makedepends=('git')
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=("kde_screensaver_suspendscreen")
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("$pkgname::git+https://github.com/Ruakij/kde_screensaver_suspendscreen")
|
|
noextract=()
|
|
sha256sums=('SKIP')
|
|
validpgpkeys=()
|
|
|
|
pkgver() {
|
|
cd "$pkgname"
|
|
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname"
|
|
make DESTDIR="$pkgdir/${HOME}/" install
|
|
}
|