38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# Template file for 'cargo-update'
|
|
pkgname=cargo-update
|
|
version=13.0.0
|
|
revision=2
|
|
build_style=cargo
|
|
hostmakedepends="pkg-config go-md2man"
|
|
makedepends="libcurl-devel libgit2-devel libssh2-devel openssl-devel"
|
|
short_desc="Cargo subcommand for updates to installed executables"
|
|
maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
|
|
license="MIT"
|
|
homepage="https://github.com/nabijaczleweli/cargo-update"
|
|
changelog="https://github.com/nabijaczleweli/cargo-update/releases"
|
|
distfiles="https://github.com/nabijaczleweli/cargo-update/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=e3229e85ec015439008e3d6acdafa0872e077595aa1d97d2ef0de8fbddb5fe3e
|
|
|
|
# on i686, unexpected index dir hashes are generated
|
|
if [ "$XBPS_TARGET_MACHINE" == "i686" ]; then
|
|
make_check_args="-- --skip ops::assert_index_path"
|
|
fi
|
|
|
|
post_patch() {
|
|
# Upstream does not ship a lockfile and is very vocal about that being
|
|
# the right way:
|
|
# https://github.com/nabijaczleweli/cargo-update/issues/50
|
|
cargo generate-lockfile
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
|
|
cd man
|
|
for page in *.md; do
|
|
go-md2man -in ${page} -out ${page%.md}.1
|
|
vman ${page%.md}.1
|
|
done
|
|
}
|