blob: 3937b52e67b7248722a889a83c6f59095310c862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Egevtech
#
# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur
pkgname=scrapfetch-rs
pkgver=0.1.4
pkgrel=2
pkgdesc="Small system info splash"
url="https://github.com/egevtech/scrapfetch-rs"
license=("BSD3")
arch=("x86_64")
provides=("scrapfetch-rs")
conflicts=("scrapfetch-rs")
source=("git+https://github.com/egevtech/scrapfetch-rs.git")
sha256sums=("SKIP")
makedepends=("git" "cargo" "rustup")
build() {
cd "$srcdir/scrapfetch-rs"
cargo build --release
}
package() {
cd "$srcdir/scrapfetch-rs/"
install -Dm755 target/release/scrapfetch-rs -t "$pkgdir/usr/bin"
}
|