# Description: A safe Rust crate for working with the Wayland clipboard # URL: https://github.com/YaLTeR/wl-clipboard-rs # Maintainer: Tim Biermann, tbier at posteo dot de # Depends on: rust wayland name=wl-clipboard-rs version=0.6.0 release=1 source=(https://github.com/YaLTeR/wl-clipboard-rs/archive/v$version/$name-$version.tar.gz) build() { 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 --manifest-path $name-$version/Cargo.toml cargo build --release --locked --manifest-path $name-$version/Cargo.toml \ --all --features=dlopen install -Dt $PKG/usr/bin $name-$version/target/release/wl-paste install -Dt $PKG/usr/bin $name-$version/target/release/wl-copy install -Dt $PKG/usr/bin $name-$version/target/release/wl-clip }