void-packages/srcpkgs/chafa/template

46 lines
1.3 KiB
Bash

# Template file for 'chafa'
pkgname=chafa
version=1.14.1
revision=1
build_style=gnu-configure
configure_args="--enable-man"
hostmakedepends="docbook-xml docbook-xsl libxslt pkg-config"
makedepends="libavif-devel libglib-devel libjxl-devel librsvg-devel libwebp-devel libXext-devel libxml2-devel"
short_desc="Versatile and fast Unicode/ASCII/ANSI graphics renderer"
maintainer="Christian Buschau <christian.buschau@mailbox.org>"
license="LGPL-3.0-or-later"
homepage="https://hpjansson.org/chafa/"
changelog="https://raw.githubusercontent.com/hpjansson/chafa/master/NEWS"
distfiles="https://hpjansson.org/chafa/releases/chafa-${version}.tar.xz"
checksum=24707f59e544cec85d7a1993854672136b05271f86954248c5d8a42e221f6f25
case "$XBPS_TARGET_MACHINE" in
x86_64*|i686*) ;;
*) configure_args+=" ax_cv_gcc_check_x86_cpu_init=no
ax_cv_gcc_check_x86_cpu_supports=no" ;;
esac
post_install() {
vcompletion tools/completions/zsh-completion.zsh zsh
}
libchafa_package() {
short_desc+=" - shared library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
chafa-devel_package() {
depends="libchafa>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/lib/chafa/include
vmove usr/lib/pkgconfig
vmove usr/share/gtk-doc
}
}