30 lines
885 B
Bash
30 lines
885 B
Bash
# Template file for 'xh'
|
|
pkgname=xh
|
|
version=0.18.0
|
|
revision=2
|
|
build_style=cargo
|
|
configure_args="--no-default-features --features online-tests,native-tls"
|
|
hostmakedepends="pkg-config oniguruma-devel"
|
|
makedepends="openssl-devel oniguruma-devel"
|
|
short_desc="Friendly and fast tool for sending HTTP requests"
|
|
maintainer="Arthur Weagel <arthur.contrib@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/ducaale/xh"
|
|
changelog="https://raw.githubusercontent.com/ducaale/xh/master/CHANGELOG.md"
|
|
distfiles="https://github.com/ducaale/xh/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=ed16781248d60a1f86d8da206440e9c761520bcd00917213dc6eb68fe357999e
|
|
|
|
post_install() {
|
|
ln -sf xh "${DESTDIR}/usr/bin/xhs"
|
|
|
|
vcompletion completions/xh.bash bash
|
|
vcompletion completions/_xh zsh
|
|
vcompletion completions/xh.fish fish
|
|
vdoc README.md
|
|
vlicense LICENSE
|
|
|
|
for m in doc/*.1; do
|
|
vman "$m"
|
|
done
|
|
}
|