contrib/shotgun/Pkgfile

25 lines
974 B
Plaintext
Raw Normal View History

2020-11-19 10:03:42 +01:00
# Description: Minimal X screenshot utility
# URL: https://github.com/neXromancers/shotgun
# Maintainer: Tim Biermann, tbier at posteo dot de
2021-02-21 14:41:29 +01:00
# Depends on: git rust xorg-libx11 xorg-libxrandr
2020-11-19 10:03:42 +01:00
# Optional: hacksaw
name=shotgun
2021-10-14 14:33:42 +02:00
version=2.2.1
_commit=2fc0d2ea8b522e47278fe02713cc546f62895c5c
2020-11-19 10:03:42 +01:00
release=1
2021-10-14 14:33:42 +02:00
#source=(https://github.com/neXromancers/shotgun/archive/v$version/$name-$version.tar.gz)
source=(https://github.com/neXromancers/shotgun/archive/$_commit/$name-$_commit.tar.gz)
2020-11-19 10:03:42 +01:00
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
2021-10-14 14:33:42 +02:00
#cargo update --manifest-path $name-$version/Cargo.toml
#cargo build --release --locked --manifest-path $name-$version/Cargo.toml
cargo update --manifest-path $name-$_commit/Cargo.toml
cargo build --release --locked --manifest-path $name-$_commit/Cargo.toml
install -Dt $PKG/usr/bin $name-$_commit/target/release/shotgun
2020-11-19 10:03:42 +01:00
}