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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏
B
Blog
小众软件
小众软件
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
L
LangChain Blog
WordPress大学
WordPress大学
罗磊的独立博客
GbyAI
GbyAI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
美团技术团队
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub 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) - ai-robots-txt
2026-06-13 · via AUR Newest Packages

Looks like upstream modified the package format and this now fails to build. I believe the source would just need to be changed to "${srcdir}/ai.robots.txt-${pkgver}". This patch builds for me:

diff --git a/PKGBUILD b/PKGBUILD
index e79d8cb..4b84c88 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,11 +14,12 @@ source=("https://github.com/ai-robots-txt/ai.robots.txt/archive/refs/tags/v$pkgv
 sha256sums=('f4024344146fc00ef641fdab28ba6a91c6bb765586725e521c375f0336989253')

 package() {
-  install -m644 -D "$srcdir"/ai.robots.txt/robots.txt -T "$pkgdir"/usr/share/ai-robots-txt/robots.txt
-  install -m644 -D "$srcdir"/ai.robots.txt/robots.json -T "$pkgdir"/usr/share/ai-robots-txt/robots.json
-  install -m644 -D "$srcdir"/ai.robots.txt/nginx-block-ai-bots.conf -T "$pkgdir"/usr/share/ai-robots-txt/nginx-block-ai-bots.conf
-  install -m644 -D "$srcdir"/ai.robots.txt/haproxy-block-ai-bots.txt -T "$pkgdir"/usr/share/ai-robots-txt/haproxy-block-ai-bots.txt
-  install -m644 -D "$srcdir"/ai.robots.txt/.htaccess -T "$pkgdir"/usr/share/ai-robots-txt/htaccess
-  install -m644 -D "$srcdir"/ai.robots.txt/Caddyfile -T "$pkgdir"/usr/share/ai-robots-txt/Caddyfile
-  install -m644 -D "$srcdir"/ai.robots.txt/LICENSE -T "$pkgdir"/usr/share/licenses/ai.robots.txt/LICENSE
+  cd "${srcdir}/ai.robots.txt-${pkgver}"
+  install -m644 -D robots.txt                  -T "$pkgdir"/usr/share/ai-robots-txt/robots.txt
+  install -m644 -D robots.json                 -T "$pkgdir"/usr/share/ai-robots-txt/robots.json
+  install -m644 -D nginx-block-ai-bots.conf    -T "$pkgdir"/usr/share/ai-robots-txt/nginx-block-ai-bots.conf
+  install -m644 -D haproxy-block-ai-bots.txt   -T "$pkgdir"/usr/share/ai-robots-txt/haproxy-block-ai-bots.txt
+  install -m644 -D .htaccess                   -T "$pkgdir"/usr/share/ai-robots-txt/htaccess
+  install -m644 -D Caddyfile                   -T "$pkgdir"/usr/share/ai-robots-txt/Caddyfile
+  install -m644 -D LICENSE                     -T "$pkgdir"/usr/share/licenses/ai.robots.txt/LICENSE
 }