contrib/git-cliff/Pkgfile

19 lines
644 B
Plaintext
Raw Normal View History

# Description: a highly customizable Changelog Generator that follows Conventional Commit specifications
# URL: https://github.com/orhun/git-cliff
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-02-25 19:55:51 +01:00
# Depends on: libgit2 rust
name=git-cliff
2024-06-03 19:01:19 +02:00
version=2.3.0
2023-04-28 18:13:44 +02:00
release=1
source=(https://github.com/orhun/git-cliff/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"
2022-08-20 15:53:57 +02:00
cargo build --release --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/$name
}