blob: 424d2ad910be2cf739a41a313622cf3bc788575c (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=gnome-shell-extension-material-you-theme-git
_uuid=material-you-theme@asubbiah.com
pkgver=r120.068d0dc
pkgrel=1
pkgdesc="Applies generated libadwaita theme from wallpaper using Material You"
arch=('any')
url="https://github.com/avanishsubbiah/material-you-theme"
license=('GPL-3.0-or-later')
depends=('adw-gtk-theme' 'gnome-shell' 'nodejs')
makedepends=('git' 'npm')
optdepends=('gdm-tools: GDM theming'
'gnome-shell-extensions: GNOME Shell theming via User Themes extension'
'python-pywal: Pywal theming')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/avanishsubbiah/material-you-theme.git')
sha256sums=('SKIP')
pkgver() {
cd material-you-theme
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd material-you-theme
}
build() {
cd material-you-theme
# Does not detect system Node.js, NPM, or SassC,
# so we'll install in the extension folder like it tries to do anyway
export npm_config_cache="$srcdir/npm_cache"
npm install --prefix "${_uuid}"
make
}
package() {
cd material-you-theme
install -d "$pkgdir/usr/share/gnome-shell/extensions/${_uuid}"
bsdtar xvf "${_uuid}.shell-extension.zip" -C \
"$pkgdir/usr/share/gnome-shell/extensions/${_uuid}/" --no-same-owner
cp -r "${_uuid}/node_modules" "$pkgdir/usr/share/gnome-shell/extensions/${_uuid}"
mv "$pkgdir/usr/share/gnome-shell/extensions/${_uuid}/locale" "$pkgdir/usr/share/"
install -Dm644 "${_uuid}/schemas/org.gnome.shell.extensions.material-you-theme.gschema.xml" -t \
"$pkgdir/usr/share/glib-2.0/schemas/"
rm -rf "$pkgdir/usr/share/gnome-shell/extensions/${_uuid}/schemas/"
}
|