29 lines
814 B
Bash
29 lines
814 B
Bash
# Template file for 'difftastic'
|
|
pkgname=difftastic
|
|
version=0.47.0
|
|
revision=1
|
|
build_style=cargo
|
|
short_desc="Structural diff tool that understands syntax"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="MIT"
|
|
homepage="https://difftastic.wilfred.me.uk"
|
|
changelog="https://raw.githubusercontent.com/Wilfred/difftastic/master/CHANGELOG.md"
|
|
distfiles="https://static.crates.io/crates/difftastic/difftastic-${version}.crate"
|
|
checksum=88178b3bb1f9d07d06abb7afc6374b4b5e0db5cb3563f13929a2fd61b6b99499
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
XBPS_CROSS_RUSTFLAGS+=" -latomic"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
broken="how is this supposed to even work"
|
|
fi
|
|
fi
|
|
|
|
pre_build() {
|
|
cargo update --package crossbeam-channel@0.5.4 --precise 0.5.8 # yanked
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|