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

推荐订阅源

P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
B
Blog RSS Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
L
LangChain Blog
IT之家
IT之家
F
Fortinet All Blogs
V
V2EX
C
Check Point Blog
The Cloudflare Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans

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) - linux-enable-ir-emitter-git
2026-06-21 · via AUR Newest Packages

jpetrina commented on 2026-06-19 08:25 (UTC)

linux-enable-ir-emitter-git/PKGBUILD: line 33: pushd: .github/workflows/deps: No such file or directory

MikeWalrus commented on 2025-08-07 04:49 (UTC)

Avoid building the dependencies and statically linking them.

diff --git a/PKGBUILD b/PKGBUILD
index f280235..bf57dca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 # Contributor: Nathaniel van Diepen <eeems@eeems.email>

 pkgname=linux-enable-ir-emitter-git
-pkgver=6.0.3.r0.gb8ee83d
+pkgver=6.1.1.r1.g7e0a520
 pkgrel=1
 pkgdesc="Enables infrared cameras that are not directly enabled out-of-the box"
 url="https://github.com/EmixamPP/linux-enable-ir-emitter"
@@ -15,7 +15,7 @@ provides=(linux-enable-ir-emitter)
 conflicts=(linux-enable-ir-emitter chicony-ir-toggle)

 makedepends=(git meson cmake argparse qt6-base zlib gtk3)
-depends=(bash cairo glib2 gdk-pixbuf2 gtk3 glibc gcc-libs)
+depends=(bash cairo glib2 gdk-pixbuf2 gtk3 glibc gcc-libs opencv yaml-cpp)

 install=linux-enable-ir-emitter.install
 options=(emptydirs !buildflags)
@@ -30,12 +30,7 @@ pkgver() {

 build() {
     cd "${srcdir}/${pkgname}"
-    pushd .github/workflows/deps
-    cmake . -B build -GNinja
-    ninja -C build
-    popd
-    meson setup --reconfigure build --libdir=lib --prefer-static --pkg-config-path=$(find .github -name "pkgconfig")
-    meson configure build --optimization=s --prefix=/usr --strip
+    meson setup --prefix=/usr --buildtype=plain build
     meson compile -C build
 }

nojo commented on 2024-08-17 12:36 (UTC)

btw this package fails to build even with gcc13 for the latest upstream commit, is someone willing to help with patches?

nojo commented on 2024-08-17 12:35 (UTC)

@MikeWalrus Upstream uses gcc 13 in their CI, so it will involve less patches if this package will use it too. What are significant downsides of using gcc 13 instead of the latest gcc?

MikeWalrus commented on 2024-08-12 22:34 (UTC)

nojo commented on 2024-08-12 20:21 (UTC)

@MikeWalrus I do not completely understand what patch do you propose. Forcefully enable LTO even if disabled in makepkg.conf?

MikeWalrus commented on 2024-08-11 02:03 (UTC)

@nojo I agree and that’s why I suggest patching the flags in meson.build.

nojo commented on 2024-08-09 15:19 (UTC) (edited on 2024-08-09 15:20 (UTC) by nojo)

You're right - package successfully compiles with lto enabled in /etc/makepkg.conf. Nevertheless, I think it's would be incorrect to both

  • assume that package would always be built with lto

  • forcefully enable lto even if it disabled in makepkg.conf

MikeWalrus commented on 2024-08-09 13:36 (UTC) (edited on 2024-08-09 13:36 (UTC) by MikeWalrus)

not to avoid problems for users with custom config

@FabioLolix Can you elaborate on this? Disabling lto will only break the package and that's probably why nojo has that error. :D

FabioLolix commented on 2024-08-09 13:16 (UTC)

Enabling lto makes the error disappear, so maybe you've disabled it.

lto is enabled by default now, it should be disabled when it cause problems by default not to avoid problems for users with custom config