46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
# Template file for 'chafa'
|
|
pkgname=chafa
|
|
version=1.14.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-man"
|
|
hostmakedepends="docbook-xml docbook-xsl libxslt pkg-config"
|
|
makedepends="libavif-devel libglib-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=670e55c28b5ecd4c8187bd97f0898762712a480ec8ea439dae4a4836b178e084
|
|
|
|
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
|
|
}
|
|
}
|