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

推荐订阅源

G
Google Developers Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
博客园_首页
Jina AI
Jina AI
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Vercel News
Vercel News
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
B
Blog
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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) - clion
2026-06-12 · via AUR Newest Packages

aliu commented on 2026-06-09 14:59 (UTC)

That was reverted. There is a clion-jre package.

starquake commented on 2026-06-08 06:33 (UTC) (edited on 2026-06-08 06:34 (UTC) by starquake)

aliu commented on 2026-06-06 18:32 (UTC)

Is it possible to have a separate package for JBR, so that all the *-jre packages just symlink to that? Currently, by default, if you install multiple JetBrains IDEs using your wonderful AUR packages, they each bundle the same JBR files again.

Zrax commented on 2026-05-26 21:21 (UTC)

Niinu commented on 2026-05-26 08:25 (UTC) (edited on 2026-05-26 08:26 (UTC) by Niinu)

After installation i get below error even if I have java-runtime installed.

Cannot start the IDE
Cannot find a runtime<br><br>Caused by:<br> Runtime not found<br><br>Please try to reinstall the IDE.<br>For support, please refer to https://jb.gg/ide/critical-startup-errors

gonciarz commented on 2026-02-12 19:49 (UTC) (edited on 2026-02-12 19:49 (UTC) by gonciarz)

diff --git a/.SRCINFO b/.SRCINFO
index 0e5fbef..9a8e896 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -20,7 +20,7 @@ pkgbase = clion

 pkgname = clion
        depends = libdbusmenu-glib
-       optdepends = clion-jre: JetBrains custom Java Runtime (Recommended)
+       depends = clion-jre
        optdepends = clion-cmake: JetBrains packaged CMake tools
        optdepends = clion-gdb: JetBrains packaged GNU debugger
        optdepends = clion-lldb: JetBrains packaged LLVM debugger
diff --git a/PKGBUILD b/PKGBUILD
index 36fc936..822480e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -43,9 +43,8 @@ build() {
 }

 package_clion() {
-    depends=('libdbusmenu-glib')
+    depends=('libdbusmenu-glib' 'clion-jre')
     optdepends=(
-        'clion-jre: JetBrains custom Java Runtime (Recommended)'
         'clion-cmake: JetBrains packaged CMake tools'
         'clion-gdb: JetBrains packaged GNU debugger'
         'clion-lldb: JetBrains packaged LLVM debugger'

carstene1ns commented on 2026-01-02 15:27 (UTC)

IMO the build() function should be renamed to prepare() and the full path in the .desktop file is unnecessary, since it is the default.

starquake commented on 2025-08-12 11:57 (UTC)

@munir0b0t: AFAIK it should take seconds, or maybe minutes. It's not actually building anything, just repackaging binaries into a pacman pkg.

I have however disabled compression of the packages in makepkg.conf because I don't use that much AUR packages so I'd rather have the speed instead of the disk usage.

Maybe the downloading is taking long?

munir0b0t commented on 2025-08-12 01:50 (UTC) (edited on 2025-08-12 01:58 (UTC) by munir0b0t)

How long does this package take to build typically? I have a decent enough system (8 cores, 8 GB RAM, 16 GB swap) and the package takes upwards of an hour to build with yay -Syu. Trying to figure out if that is expected or something's wrong with my system. Most of the time is spent compressing the package and in the rsync command.

Zrax commented on 2025-07-16 16:03 (UTC)

It seems some of those tools don't handle conditional dependencies very well... I've reverted the change to JRE bundling, and added a comment on the java-runtime dependency to point users to the JetBrains documentation around using an external JRE instead.