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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
U
Unit 42
M
MIT News - Artificial intelligence
小众软件
小众软件
P
Proofpoint News Feed
雷峰网
雷峰网
L
LangChain Blog
S
SegmentFault 最新的问题
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
WordPress大学
WordPress大学
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow 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) - cutemarked-git
2026-06-12 · via AUR Newest Packages

Some fixes: URLs, whitespace, and getting the submodules URL config right. (Note that hunspell has an extra subdir level, therefore I unrolled the loop.)

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,23 +14,23 @@ makedepends=('git' 'qt5-tools')
 provides=('cutemarked')
 conflicts=('cutemarked')
 source=("git+$url.git"
-   "git+https://github.com/hunspell/hunspell.git"
-   "git+https://github.com/mity/md4c"
-   "https://github.com/pbek/qmarkdowntextedit"
+        "git+https://github.com/hunspell/hunspell.git"
+        "git+https://github.com/mity/md4c.git"
+        "git+https://github.com/pbek/qmarkdowntextedit.git"
        )
 md5sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')

 pkgver() {
   cd $_gitname
-   printf "%s.r%s" $(git log -1 --format="%cd" --date=short | tr -d '-') $(git rev-list --count HEAD)
+  printf "%s.r%s" $(git log -1 --format="%cd" --date=short | tr -d '-') $(git rev-list --count HEAD)
 }

 prepare() {
   cd $_gitname
   git submodule init
-  for __submodule in hunspell md4c qmarkdowntextedit
-  do git config submodule.${__submodule}.url "$srcdir"/${_gitname}/3rdparty/${__submodule}
-  done
+  git config submodule.3rdparty/hunspell/hunspell.url "${srcdir}/hunspell"
+  git config submodule.3rdparty/md4c.url "${srcdir}/md4c"
+  git config submodule.3rdparty/qmarkdowntextedit.url "${srcdir}/qmarkdowntextedit"
   git submodule update
 }