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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
量子位
博客园 - 司徒正美
V
V2EX
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
N
Netflix TechBlog - Medium
L
LangChain Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure 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) - 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