Package Details: anyrun 25.9.3-2

Git Clone URL: https://aur.archlinux.org/anyrun.git (read-only, click to copy)
Package Base: anyrun
Description: A wayland native, highly customizable runner
Upstream URL: https://github.com/anyrun-org/anyrun
Licenses: GPL-3.0-only
Submitter: xiota
Maintainer: xiota
Last Packager: xiota
Votes: 1
Popularity: 0.69
First Submitted: 2025-09-12 15:52 (UTC)
Last Updated: 2025-09-23 22:07 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

xiota commented on 2025-09-26 21:53 (UTC) (edited on 2025-09-26 21:54 (UTC) by xiota)

Added !strip and !lto because they can affect function. Did not add !debug because it can useful when reporting issues. Users may disable debug by editing /etc/makepkg.conf.

Joboy commented on 2025-09-23 21:53 (UTC) (edited on 2025-09-23 21:55 (UTC) by Joboy)

This package currently creates broken anyrun-plugins, you should probably set the following makepkg options:

options=('!strip' '!debug' '!lto')

Reasoning:

Also, the for-loop you use currently "installs" everything multiple times, you should probably change that to a single install-line:

-  for i in "$CARGO_TARGET_DIR/release"/*.so; do
-    install -Dm644 "$CARGO_TARGET_DIR/release"/*.so -t "$pkgdir/usr/lib/anyrun/"
-  done
+  install -Dm644 -t "$pkgdir/usr/lib/anyrun/" "$CARGO_TARGET_DIR/release"/*.so