diff options
author | Mark Wagie | 2024-08-27 11:28:54 -0600 |
---|---|---|
committer | Mark Wagie | 2024-08-27 11:28:54 -0600 |
commit | de3fe1b22fcac9d3085d22d21a59fca0c353f21e (patch) | |
tree | f8ae8d9548e4d5fa33edf2ba1894951a979ce085 | |
parent | ce81d2ab2cca0f25ac61f56d38451bbd8dbe0a6e (diff) | |
download | aur-colloid-icon-theme-git.tar.gz |
add catppuccin, everforest & gruvbox themes
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 39 |
2 files changed, 52 insertions, 4 deletions
@@ -1,6 +1,6 @@ pkgbase = colloid-icon-theme-git pkgdesc = Icon theme for Linux desktops - pkgver = 2024.02.28.r1.ga671b46 + pkgver = 2024.08.27.r0.g39a2607e pkgrel = 1 url = https://github.com/vinceliuice/Colloid-icon-theme arch = any @@ -16,11 +16,26 @@ pkgname = colloid-icon-theme-git provides = colloid-icon-theme conflicts = colloid-icon-theme +pkgname = colloid-catppuccin-theme-git + pkgdesc = Catppuccin icon theme for Linux desktops + provides = colloid-catppuccin-theme + conflicts = colloid-catppuccin-theme + pkgname = colloid-dracula-theme-git pkgdesc = Dracula icon theme for Linux desktops provides = colloid-dracula-theme conflicts = colloid-dracula-theme +pkgname = colloid-everforest-theme-git + pkgdesc = Everforest icon theme for Linux desktops + provides = colloid-everforest-theme + conflicts = colloid-everforest-theme + +pkgname = colloid-gruvbox-theme-git + pkgdesc = Gruvbox icon theme for Linux desktops + provides = colloid-gruvbox-theme + conflicts = colloid-gruvbox-theme + pkgname = colloid-nord-icon-theme-git pkgdesc = Nord icon theme for Linux desktops provides = colloid-nord-icon-theme @@ -1,12 +1,15 @@ # Maintainer: Mark Wagie <mark dot wagie at proton dot me> pkgname=( 'colloid-icon-theme-git' + 'colloid-catppuccin-theme-git' 'colloid-dracula-theme-git' + 'colloid-everforest-theme-git' + 'colloid-gruvbox-theme-git' 'colloid-nord-icon-theme-git' 'colloid-cursors-git' ) pkgbase=colloid-icon-theme-git -pkgver=2024.02.28.r1.ga671b46 +pkgver=2024.08.27.r0.g39a2607e pkgrel=1 pkgdesc="Icon theme for Linux desktops" arch=('any') @@ -20,7 +23,7 @@ sha256sums=('SKIP') pkgver() { cd Colloid-icon-theme - git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' + git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } prepare() { @@ -36,7 +39,17 @@ package_colloid-icon-theme-git() { cd Colloid-icon-theme install -d "$pkgdir/usr/share/icons" - ./install.sh -t all -d "$pkgdir/usr/share/icons" + ./install.sh -s default -t all -d "$pkgdir/usr/share/icons" +} + +package_colloid-catppuccin-theme-git() { + pkgdesc="Catppuccin icon theme for Linux desktops" + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd Colloid-icon-theme + install -d "$pkgdir/usr/share/icons" + ./install.sh -s catppuccin -t all -d "$pkgdir/usr/share/icons" } package_colloid-dracula-theme-git() { @@ -49,6 +62,26 @@ package_colloid-dracula-theme-git() { ./install.sh -s dracula -t all -d "$pkgdir/usr/share/icons" } +package_colloid-everforest-theme-git() { + pkgdesc="Everforest icon theme for Linux desktops" + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd Colloid-icon-theme + install -d "$pkgdir/usr/share/icons" + ./install.sh -s everforest -t all -d "$pkgdir/usr/share/icons" +} + +package_colloid-gruvbox-theme-git() { + pkgdesc="Gruvbox icon theme for Linux desktops" + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd Colloid-icon-theme + install -d "$pkgdir/usr/share/icons" + ./install.sh -s gruvbox -t all -d "$pkgdir/usr/share/icons" +} + package_colloid-nord-icon-theme-git() { pkgdesc="Nord icon theme for Linux desktops" provides=("${pkgname%-git}") |