Search Criteria
Package Details: listenbrainz-mpd 2.0.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/listenbrainz-mpd.git (read-only, click to copy) |
---|---|
Package Base: | listenbrainz-mpd |
Description: | ListenBrainz submission client for MPD |
Upstream URL: | https://codeberg.org/elomatreb/listenbrainz-mpd |
Keywords: | listenbrainz mpd |
Licenses: | AGPL3 |
Submitter: | elomatreb |
Maintainer: | elomatreb |
Last Packager: | elomatreb |
Votes: | 2 |
Popularity: | 0.009269 |
First Submitted: | 2022-02-25 21:03 (UTC) |
Last Updated: | 2023-01-07 12:53 (UTC) |
Dependencies (2)
- openssl (openssl-hardened, openssl-static, quictls-openssl, openssl-git)
- cargo (rust-nightly-bin, cargo-git, rustup-git, rust, rustup) (make)
Latest Comments
bhartshorn commented on 2023-01-28 23:36 (UTC)
Hi, this package fails to build on Raspberry PI because line 16 hardcodes the architecture to "armv7h-unknown-linux-gnu" which is not a valid arch in rustc. The build returns this error:
error: Error loading target specification: Could not find specification for target "armv7h-unknown-linux-gnu". Run `rustc --print target-list` for a list of built-in targets
The cfddns package fixed the same error by using this instead:
cargo fetch --locked --target "$(rustc -vV | sed -n 's|host: ||p')"