Upstream got fixed.
Search Criteria
Package Details: gnome-shell-extension-dash-to-dock-git 105.r16.g7fd7a603-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/gnome-shell-extension-dash-to-dock-git.git (read-only, click to copy) |
|---|---|
| Package Base: | gnome-shell-extension-dash-to-dock-git |
| Description: | move the dash out of the overview transforming it in a dock |
| Upstream URL: | https://micheleg.github.io/dash-to-dock/ |
| Licenses: | GPL-2.0-only |
| Conflicts: | gnome-shell-extension-dash-to-dock |
| Provides: | gnome-shell-extension-dash-to-dock |
| Submitter: | haaja |
| Maintainer: | aminvakil |
| Last Packager: | aminvakil |
| Votes: | 84 |
| Popularity: | 0.000018 |
| First Submitted: | 2013-12-30 12:25 (UTC) |
| Last Updated: | 2026-06-01 07:12 (UTC) |
Dependencies (3)
- gnome-shell (gnome-shell-mobile-gitAUR, gnome-shell-beta-performanceAUR, gnome-shell-beta-performanceAUR, gnome-shell-beta-performanceAUR, gnome-shell-gitAUR, gnome-shell-performance-unstableAUR, gnome-shell-performance-unstableAUR, gnome-shell-performance-unstableAUR, gnome-shell-mobileAUR, gnome-shell-performanceAUR, gnome-shell-rounded-blurAUR, gnome-shell-rounded-blur-docsAUR, gnome-shell-multiseatAUR, gnome-shell-multiseat-docsAUR, gnome-shell-hdr-updateAUR)
- git (git-gitAUR, git-glAUR, git-wd40AUR) (make)
- sassc (sassc-gitAUR) (make)
Required by (4)
- gnome-shell-extension-unite (requires gnome-shell-extension-dash-to-dock) (optional)
- starlabstheme-session-git (requires gnome-shell-extension-dash-to-dock) (optional)
- whitesur-gtk-theme-git (requires gnome-shell-extension-dash-to-dock) (optional)
- whitesur-gtk-theme-nord-git (requires gnome-shell-extension-dash-to-dock) (optional)
Sources (1)
aminvakil commented on 2026-06-01 07:23 (UTC)
rubin55 commented on 2026-05-27 07:27 (UTC) (edited on 2026-05-27 07:31 (UTC) by rubin55)
Edit: I forgot I dropped a message to you before and completely missed the pull request you created for this! I'll leave the comment for the impatient, sorry for the noise.
Since two days this build is broken due to changes in the Makefile. I've created an issue upstream. In the meantime you can patch the PKGBUILD and add a patch for the Makefile (not sure how fast upstream fixes this):
diff --git a/PKGBUILD b/PKGBUILD
index 0078756..f31392c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
_srcname=dash-to-dock
pkgname=gnome-shell-extension-dash-to-dock-git
-pkgver=102.r3.gf29b27e0
+pkgver=105.r15.g2bc44a6a
pkgrel=1
pkgdesc="move the dash out of the overview transforming it in a dock"
arch=('any')
@@ -17,8 +17,10 @@ depends=('gnome-shell')
makedepends=('git' 'sassc')
conflicts=('gnome-shell-extension-dash-to-dock')
provides=('gnome-shell-extension-dash-to-dock')
-source=("git+https://github.com/micheleg/${_srcname}.git")
-sha256sums=('SKIP')
+source=("git+https://github.com/micheleg/${_srcname}.git"
+ "fix-install-schemas.patch")
+sha256sums=('SKIP'
+ 'SKIP')
pkgver() {
cd "${_srcname}"
@@ -27,6 +29,11 @@ pkgver() {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
+prepare() {
+ cd "${_srcname}"
+ patch -Np1 -i "${srcdir}/fix-install-schemas.patch"
+}
+
build() {
export SASS=sassc
cd "${_srcname}"
And fix-install-schemas.patch:
--- a/Makefile
+++ b/Makefile
@@ -106,8 +106,9 @@
mkdir -p $(SHARE_PREFIX)/glib-2.0/schemas $(SHARE_PREFIX)/locale
cp -r ./schemas/*.gschema.xml $(SHARE_PREFIX)/glib-2.0/schemas
cp -r ./_build/locale/* $(SHARE_PREFIX)/locale
-endif
+else
cp schemas/gschemas.compiled $(INSTALLBASE)/$(INSTALLNAME)/schemas/
+endif
-rm -fR _build
echo done
Note: I'm not sure what upstream intended to do with this change; the above patch at least makes sure the schemas directory is created, but upstream might fix this differently.
aminvakil commented on 2026-05-26 20:09 (UTC)
@rubin55
Yes, I've opened https://github.com/micheleg/dash-to-dock/pull/2600.
rubin55 commented on 2026-05-26 19:03 (UTC) (edited on 2026-05-26 19:04 (UTC) by rubin55)
I just got a build error about a schema/ dir? location:
cp: cannot create regular file '/tmp/makepkg.builddir/gnome-shell-extension-dash-to-dock-git/pkg/gnome-shell-extension-dash-to-dock-git/usr/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/': Not a directory
make: *** [Makefile:108: install-local] Error 1
==> ERROR: A failure occurred in package().
Aborting...
Jib commented on 2022-04-07 07:53 (UTC)
Works great, thanks!
haptizum commented on 2022-04-07 02:35 (UTC)
I installed this but I don't see this in my extensions. What am doing something wrong?
ewout commented on 2022-04-07 01:44 (UTC)
@malacology I can't find any documentation on this requirement. Please point me to it? Further, isn't it assumed anyone using the AUR has it installed per default, given it's included in the base-devel package group?
malacology commented on 2022-04-07 01:38 (UTC)
make should be added into dependencies
aminvakil commented on 2021-09-28 18:58 (UTC)
@ewout, Oh sorry, right, someone else created the merge request.
Yes, an aur maintainer will accept or reject the request.
Pinned Comments
aminvakil commented on 2021-08-28 15:06 (UTC)
This repository is maintained at https://github.com/aminvakil/aur.
In case anyone had any suggestions about anything, feel free to raise a PR there.