Package Details: steamfetch 0.5.5-1

Git Clone URL: https://aur.archlinux.org/steamfetch.git (read-only, click to copy)
Package Base: steamfetch
Description: neofetch for Steam - Display your Steam stats in terminal with style.
Upstream URL: https://github.com/unhappychoice/steamfetch
Keywords: fetch steam steamfetch
Licenses: ISC
Conflicts: steamfetch-bin, steamfetch-git
Submitter: ColonialDagger
Maintainer: ColonialDagger
Last Packager: ColonialDagger
Votes: 1
Popularity: 0.157141
First Submitted: 2026-02-16 21:00 (UTC)
Last Updated: 2026-05-17 11:07 (UTC)

Latest Comments

ColonialDagger commented on 2026-02-19 02:21 (UTC)

@HurricanePootis Thanks! I updated the PKGBUILD to better follow the guidelines on the Arch wiki.

HurricanePootis commented on 2026-02-19 01:51 (UTC)

Here is a diff that makes this PKGBUILD more compliant with the Rust package guidlines:

diff --git a/PKGBUILD b/PKGBUILD
index bb96d3d..4d1a545 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,9 +24,18 @@ noextract=()
 sha256sums=('9f1b6a201ad3aa2aaa51270f068a109f05ad1d1d2e37c1cae3df88e5f4edf421')
 validpgpkeys=()

+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  export RUSTUP_TOOLCHAIN=stable
+  cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
+}
+
+
 build() {
   cd "$srcdir/steamfetch-$pkgver"
-  cargo build --release --locked
+  export RUSTUP_TOOLCHAIN=stable
+  export CARGO_TARGET_DIR=target
+  cargo build --release --frozen --all-features
 }

 package() {