blob: 5c435dfb827810aca035c2f01b8299e44bd4fdf4 (
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
|
# Maintainer: Jay Ta'ala <jay@jaytaala.com>
pkgname=gnome-shell-extension-paperwm-redux-git
_pkgname=PaperWM
pkgver=r2171.39d48c3
pkgrel=1
pkgdesc="Fork of PaperWM (a gnome scrolling window manager) focused on supporting the latest Gnome release(s) and continually implementing fixes and new features quickly."
arch=('any')
url="https://github.com/PaperWM-redux/PaperWM"
license=('GPL3')
depends=('gnome-shell')
makedepends=('git')
source=("git+https://github.com/PaperWM-redux/PaperWM.git")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/$_pkgname"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
find -type f -not -path '*.git*' -exec install -Dm644 {} $pkgdir/usr/share/gnome-shell/extensions/paperwm@paperwm-redux.github.com/{} \;
}
|