summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 112c11a84bfb9e03c4a0f3b7f39e81adb4f3e77b (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
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=gnome-shell-extension-material-you-colors-git
_uuid=material-you-colors@francescocaracciolo.github.io
pkgver=r134.3f6a005
pkgrel=1
pkgdesc="Applies generated libadwaita theme from wallpaper using Material You"
arch=('any')
url="https://github.com/FrancescoCaracciolo/material-you-colors"
license=('GPL-3.0-or-later')
depends=('adw-gtk3' '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}" 'gnome-shell-extension-material-you-theme')
source=('git+https://github.com/FrancescoCaracciolo/material-you-colors.git')
sha256sums=('SKIP')

pkgver() {
  cd material-you-colors
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd material-you-colors

  # 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-colors
  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" \
    "$pkgdir/usr/share/glib-2.0/schemas/org.gnome.shell.extensions.material-you-colors.gschema.xml"
  rm -rf "$pkgdir/usr/share/gnome-shell/extensions/${_uuid}/schemas/"
}