blob: 50b582e00c9aa03118186252c15b8504d849b07f (
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
29
30
31
32
33
34
35
|
# Maintainer: Henri van de Munt <(firstname) @ gmail.com>
# Contributor: j.r <j.r@jugendhacker.de>
pkgname=gnome-shell-extension-material-shell-git
pkgver=r931.8e6c6e3
pkgrel=1
epoch=1
pkgdesc="GNOME Shell Extension Material Shell"
arch=('any')
url="https://github.com/PapyElGringo/material-shell"
license=('GPL')
depends=('gnome-shell')
makedepends=('git' 'npm')
optdepends=('plata-theme: gtk and shell theme'
'tela-icon-theme-git: icon theme'
'ttf-roboto: font')
groups=('gnome-shell-extensions')
source=('git+https://github.com/PapyElGringo/material-shell.git')
md5sums=('SKIP')
pkgver() {
cd material-shell
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd material-shell
npm install --cache "${srcdir}/npm-cache"
make compile
}
package() {
cd material-shell
install -d $pkgdir/usr/share/gnome-shell/extensions/material-shell@papyelgringo/
cp -r dist/* $pkgdir/usr/share/gnome-shell/extensions/material-shell@papyelgringo/
}
|