30 lines
856 B
Bash
30 lines
856 B
Bash
# Template file for 'ouch'
|
|
pkgname=ouch
|
|
version=0.5.1
|
|
revision=1
|
|
build_style=cargo
|
|
hostmakedepends="pkg-config"
|
|
makedepends="liblzma-devel bzip2-devel libzip-devel libzstd-devel"
|
|
short_desc="CLI utility for easily compressing and decompressing files and dirs"
|
|
maintainer="Savoy <savoy@liberation.red>"
|
|
license="MIT"
|
|
homepage="https://github.com/ouch-org/ouch"
|
|
changelog="https://raw.githubusercontent.com/ouch-org/ouch/main/CHANGELOG.md"
|
|
distfiles="https://github.com/ouch-org/ouch/archive/refs/tags/${version}.tar.gz"
|
|
checksum=46cc2b14f53de2f706436df59300eb90c5a58f08ac8c738fd976fcb8ec0cd335
|
|
|
|
pre_build() {
|
|
export OUCH_ARTIFACTS_FOLDER=artifacts
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vcompletion "artifacts/_ouch" zsh
|
|
vcompletion "artifacts/ouch.fish" fish
|
|
vcompletion "artifacts/ouch.bash" bash
|
|
|
|
for page in artifacts/*.1; do
|
|
vman ${page}
|
|
done
|
|
}
|