Package Details: skeuos-gtk-theme-git 20211006.r0.gcc944ac-1

Git Clone URL: https://aur.archlinux.org/skeuos-gtk-theme-git.git (read-only, click to copy)
Package Base: skeuos-gtk-theme-git
Description: Light and dark colorful Gtk3.20+ theme
Upstream URL: https://github.com/daniruiz/skeuos-gtk
Licenses: GPL3
Submitter: cbrst
Maintainer: cbrst
Last Packager: cbrst
Votes: 2
Popularity: 0.000000
First Submitted: 2021-03-26 21:38 (UTC)
Last Updated: 2021-10-07 08:10 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

rendle commented on 2021-10-29 18:32 (UTC)

Seems like there are no such combinations as black-dark and white-light and installation crashes.

I fixed it by editing PKGBUILD:

@@ -26,6 +26,10 @@ package() {

    for shade in Dark Light; do
        for color in Black Blue Brown Cyan Green Grey Magenta Orange Red Teal Violet White Yellow; do
+           if [ ! -d $srcdir/$_pkgname/themes/Skeuos-${color}-${shade} ]
+           then
+               continue
+           fi
            cp -r $srcdir/$_pkgname/themes/Skeuos-${color}-${shade} "$pkgdir"/usr/share/themes/Skeuos-${color}-${shade}
            cp -r $srcdir/$_pkgname/themes/Skeuos-${color}-${shade}-GNOME_40+41/gnome-shell "$pkgdir"/usr/share/themes/Skeuos-${color}-${shade}
            cp -r $srcdir/$_pkgname/themes/Skeuos-${color}-${shade}-FullPanel-GNOME_40+41 "$pkgdir"/usr/share/themes/Skeuos-${color}-${shade}-FullPanel

cbrst commented on 2021-10-01 09:48 (UTC)

@gynamics: Thanks for pointing that out, however I noticed the make step is not even necessary in the PKGBUILD. The themes are in the Github repo ready to use. I have removed that step.

gynamics commented on 2021-10-01 08:55 (UTC) (edited on 2021-10-01 09:38 (UTC) by gynamics)

I tried build it forked from github, it actually depends on optipng, sassc and inkscape, and that is not checked as dependencies both in PKGBUILD and Makefile

zfkerr commented on 2021-09-25 09:14 (UTC)

==> Starting package()...
mkdir -p /home/user/.cache/paru/clone/skeuos-gtk-theme-git/pkg/skeuos-gtk-theme-git/usr/share/themes
cp -a themes/Skeuos-Black-Dark themes/Skeuos-Black-Light themes/Skeuos-Blue-Dark themes/Skeuos-Blue-Light themes/Skeuos-Brown-Dark themes/Skeuos-Brown-Light themes/Skeuos-Cyan-Dark themes/Skeuos-Cyan-Light themes/Skeuos-Green-Dark themes/Skeuos-Green-Light themes/Skeuos-Grey-Dark themes/Skeuos-Grey-Light themes/Skeuos-Magenta-Dark themes/Skeuos-Magenta-Light themes/Skeuos-Orange-Dark themes/Skeuos-Orange-Light themes/Skeuos-Red-Dark themes/Skeuos-Red-Light themes/Skeuos-Teal-Dark themes/Skeuos-Teal-Light themes/Skeuos-Violet-Dark themes/Skeuos-Violet-Light themes/Skeuos-White-Dark themes/Skeuos-White-Light themes/Skeuos-Yellow-Dark themes/Skeuos-Yellow-Light /home/user/.cache/paru/clone/skeuos-gtk-theme-git/pkg/skeuos-gtk-theme-git/usr/share/themes
cp: cannot stat '/themes/Skeuos-Black-Dark-GNOME_40/gnome-shell': No such file or directory
==> ERROR: A failure occurred in package().
Aborting...

I fixed it by editing PKGBUILD:

-make DESTDIR="$pkgdir/" install
+make DESTDIR="$pkgdir" install
-cp -r Skeuos-${color}-Dark-GNOME_40/gnome-shell "$pkgdir"/usr/share/themes/Skeuos-${color}-Dark
-cp -r Skeuos-${color}-Light-GNOME_40/gnome-shell "$pkgdir"/usr/share/themes/Skeuos-${color}-Light
+cp -r $srcdir/$_pkgname/themes/Skeuos-${color}-Dark-GNOME_40/gnome-shell "$pkgdir"/usr/share/themes/Skeuos-${color}-Dark
+cp -r $srcdir/$_pkgname/themes/Skeuos-${color}-Light-GNOME_40/gnome-shell "$pkgdir"/usr/share/themes/Skeuos-${color}-Light

And now it works fine for me!

yochananmarqos commented on 2021-08-13 15:53 (UTC)

@tsbarnes: I've updated my PKGBUILD in my previous comment to install the gnome-shell and xfwm4 themes.

tsbarnes commented on 2021-08-06 21:00 (UTC)

Is there any chance of a matching package of the GNOME Shell themes from the skeuos-gtk repository?

yochananmarqos commented on 2021-07-30 20:42 (UTC)

  • Use a pkgver() function to generate the pkgver, see VCS package guidelines
  • The license is GPL3
  • git is required to build, add it to makedepends()
  • Use the Makefile to install

Example PKGBUILD