Search Criteria
Package Details: listenbrainz-mpd 2.3.8-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: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2022-02-25 21:03 (UTC) |
Last Updated: | 2024-08-11 10:57 (UTC) |
Dependencies (6)
- libcrypto.so (openssl-gitAUR, openssl-staticAUR, lib32-openssl, openssl, openssl-1.1)
- libssl.so (openssl-gitAUR, openssl-staticAUR, lib32-openssl, openssl, openssl-1.1)
- sqlite (sqlite-fossilAUR, libsql-sqlite3AUR)
- asciidoctor (make)
- cargo (rustup-gitAUR, rust-nightly-binAUR, rust-gitAUR, rust-beta-binAUR, rust, rustup) (make)
- openssl (openssl-gitAUR, openssl-staticAUR) (make)
Latest Comments
bhartshorn commented on 2023-01-31 18:52 (UTC)
Yeah, to be clear, I'm no rust or pkgbuild expert at all, I'm not certain that snippet is the best solution, just the first one that I found. Regardless, thanks for maintaining the package!
elomatreb commented on 2023-01-31 17:22 (UTC)
Mh, actually never mind the preceding comment, apparently the target selection for
cargo fetch
works differently than it does forcargo build
, so it downloads dependencies for all platforms. I'll use the snippet provided.elomatreb commented on 2023-01-31 17:05 (UTC)
@bhartshorn: I believe that's equivalent to just leaving off the
--target
option altogether, which seems like the best choice in any case.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')"