shikane: initial commit, version 0.2.0

This commit is contained in:
Tim Biermann 2023-10-04 10:40:44 +02:00
parent d07f364c4d
commit 47395c0e55
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 26 additions and 0 deletions

3
shikane/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/shikane

5
shikane/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30JvGSGRFLl4F1ubiu0wqgD/+mWhnscliGITvS517B4YZx5gd3dzSkBm/B3TIz26P/I8kQSgAiNS1jVApBhkAAQ=
SHA256 (Pkgfile) = 241e5ec0dd89c3de78688e64e4533e9e9f019783094c142b37aefcbebab81196
SHA256 (.footprint) = ad112ceef7a48ca0942f747d1a3a4c847e15dd7212404cbacfc7ad7d13183fb2
SHA256 (shikane-v0.2.0.tar.bz2) = c8c3f6a70f40970acd51da519e9bda85434bb930ceb850cfd68bfa37d8be7bef

18
shikane/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: dynamic output configuration tool that automatically detects and configures connected outputs
# URL: https://gitlab.com/w0lff/shikane
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust wlroots
name=shikane
version=0.2.0
release=1
source=(https://gitlab.com/w0lff/shikane/-/archive/v$version/shikane-v$version.tar.bz2)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
cargo build --release --manifest-path $name-v$version/Cargo.toml
install -Dt $PKG/usr/bin $name-v$version/target/release/$name
}