22 lines
647 B
Bash
22 lines
647 B
Bash
pkgname=orchis-gtk-theme
|
|
pkgver=2025-04-25
|
|
pkgdesc="A Material Design theme for GNOME/GTK based desktop environments"
|
|
homepage="https://github.com/vinceliuice/orchis-theme"
|
|
arch=('any')
|
|
license=('GPL-3.0-or-later')
|
|
depends=('sassc')
|
|
sources=("${pkgname}-${pkgver}.tar.gz")
|
|
urls=("${homepage}/archive/refs/tags/${pkgver}.tar.gz")
|
|
sha256sums=("d479653415e271fe9f3324f1f4f51cf28b1134164667142c6c6a6db41cf4da9b")
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_install() {
|
|
install -dm 755 "${pkgdir}/usr/share/themes"
|
|
./install.sh --tweaks submenu --dest "${pkgdir}/usr/share/themes"
|
|
}
|
|
|
|
# vim:ft=sh syn=sh et sw=2:
|