contrib/sccache/Pkgfile
2019-09-19 22:57:44 +10:00

23 lines
565 B
Plaintext

# Description: Sccache is a ccache-like tool
# URL: https://github.com/mozilla/sccache
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: rust
name=sccache
version=0.2.11
release=1
source=(https://github.com/mozilla/sccache/archive/$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 fetch
cargo build --release
cargo install --path . --root $PKG/usr
rm $PKG/usr/.crates.toml
}