惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
IT之家
IT之家
Google DeepMind News
Google DeepMind News
罗磊的独立博客
爱范儿
爱范儿
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
U
Unit 42
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
B
Blog
博客园 - 叶小钗
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - gnome-shell-extension-dash-to-dock-git
2026-06-01 · via AUR Newest Packages

Pinned Comments

aminvakil commented on 2021-08-28 15:06 (UTC)

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 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)

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.