summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 60ef4ce20b90c9278bf89e8b3764d519542626ca (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: Christoph Petrausch aur@petrausch.info
pkgname=gnome-shell-extension-paperwm-git
_pkgname=PaperWM
pkgver=v44.1.1.r0.g5bf0e3e
pkgrel=1
pkgdesc="A gnome shell extension providing scrollable tiling of windows and per monitor workspaces."
arch=('any')
url="https://github.com/paperwm/PaperWM"
license=('GPL3')
depends=('gnome-shell')
makedepends=('git')
source=("git+https://github.com/paperwm/PaperWM#branch=develop")
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/$_pkgname"
  git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
  cd "$srcdir/$_pkgname"
  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
  mv LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
  for i in $(find -type f -not -path '*.git*')
    do
        install -Dm 644 $i $pkgdir/usr/share/gnome-shell/extensions/paperwm@hedning:matrix.org/$i
    done
}