summaryrefslogtreecommitdiff
path: root/git-cliff/Pkgfile
blob: cca81ae109a875fba7b6e29c25101451586e9fae (plain)
    1 # Description: a highly customizable Changelog Generator that follows Conventional Commit specifications
    2 # URL: https://github.com/orhun/git-cliff
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: rust
    5 
    6 name=git-cliff
    7 version=1.1.1
    8 release=1
    9 source=(https://github.com/orhun/git-cliff/archive/v$version/$name-$version.tar.gz)
   10 
   11 build() {
   12   prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
   13   mkdir "$PKGMK_SOURCE_DIR/rust" || true
   14   export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
   15 
   16   cargo build --release --manifest-path $name-$version/Cargo.toml
   17   install -Dt $PKG/usr/bin $name-$version/target/release/$name
   18 }

Generated by cgit