Package Details: mow-git r30.4452efd-2

Git Clone URL: https://aur.archlinux.org/mow-git.git (read-only, click to copy)
Package Base: mow-git
Description: Cross platform CLI tool for Glorious Model O Wireless
Upstream URL: https://github.com/korkje/mow
Keywords: rust
Provides: mow
Submitter: Crstian
Maintainer: Crstian
Last Packager: Crstian
Votes: 2
Popularity: 0.35
First Submitted: 2022-03-06 12:38 (UTC)
Last Updated: 2026-01-23 16:45 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

Crstian commented on 2026-01-23 16:49 (UTC)

Fixed

A43 commented on 2026-01-23 16:24 (UTC) (edited on 2026-01-23 16:27 (UTC) by A43)

The following diff makes this package properly set the pkgver variable and has some other small improvements to this PKGBUILD (including the ones in my previous comment):
https://paste.rs/0MA89

A43 commented on 2025-12-30 05:21 (UTC) (edited on 2026-01-23 16:26 (UTC) by A43)

Do the following to fix building this package. The same fix is used for some official rust packages.

diff --git a/PKGBUILD b/PKGBUILD
index 6dd4386..b1c7896 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,13 +10,11 @@ makedepends=('cargo' 'git' 'libusb')
 provides=('mow')
 source=('git+https://github.com/korkje/mow.git')
 md5sums=('SKIP')
-
+options=(!lto)

 build() {
   cd $srcdir/mow/;
-  cargo build \
-    --release \
-   -vv;
+  cargo build --release
 }

 package() {

This also reduces the unnecessary verbosity of the cargo build command.

Karagra commented on 2023-05-02 17:34 (UTC)

This is failing to build atm, any recommendations? error: linking with cc failed: exit status: 1

peelz commented on 2023-03-09 16:06 (UTC)

It works now. Thanks.

Crstian commented on 2023-03-09 11:00 (UTC)

Can you test it now?

peelz commented on 2023-03-07 03:36 (UTC)

This package fails to build in a clean chroot. There's a missing build dependency on libusb.