summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e1ab281b974891cd31f84cd497cf7eae125e54b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Kishore G <kishore96 at gmail dot com>

_name=sticky-window-snapping
pkgname=kwin-scripts-${_name}-git
pkgver=r93.9781ac5
pkgrel=1
pkgdesc="KWin script that makes window edges sticky while resizing."
arch=('any')
url="https://github.com/Flupp/sticky-window-snapping"
license=('GPL')
depends=('kwin')
makedepends=('git' 'kpackage')
optdepends=()
source=("${pkgname}::git+${url}.git")
md5sums=('SKIP')

pkgver() {
  cd "${pkgname}"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

package() {
  cd ${pkgname}/package
  kpackagetool6 -t KWin/Script -p "$pkgdir"/usr/share/kwin/scripts -i .
}