24 lines
634 B
Plaintext
24 lines
634 B
Plaintext
|
# Description: Minimal X screenshot utility
|
||
|
# URL: https://github.com/neXromancers/shotgun
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: rust xorg-libx11 xorg-libxrandr
|
||
|
# Optional: hacksaw
|
||
|
|
||
|
name=shotgun
|
||
|
version=2.2.0
|
||
|
release=1
|
||
|
source=(https://github.com/neXromancers/shotgun/archive/v$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
|
||
|
mkdir "$PKGMK_SOURCE_DIR/rust" || true
|
||
|
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
|
||
|
|
||
|
cargo update
|
||
|
cargo fetch
|
||
|
cargo build --release --locked
|
||
|
install -Dt $PKG/usr/bin target/release/shotgun
|
||
|
}
|