void-packages/srcpkgs/fastfetch/template

37 lines
1.3 KiB
Bash

# Template file for 'fastfetch'
pkgname=fastfetch
version=2.29.0
revision=1
build_style=cmake
configure_args="-DENABLE_SYSTEM_YYJSON=ON"
hostmakedepends="pkg-config"
makedepends="yyjson-devel vulkan-loader-devel libXrandr-devel wayland-devel libdrm-devel
glib-devel dconf-devel libmagick-devel chafa-devel zlib-devel dbus-devel MesaLib-devel
OpenCL-Headers xfconf-devel dbus-devel pulseaudio-devel ddcutil-devel elfutils-devel"
short_desc="System information fetching tool"
maintainer="classabbyamp <void@placeviolette.net>"
license="MIT"
homepage="https://github.com/fastfetch-cli/fastfetch"
changelog="https://github.com/fastfetch-cli/fastfetch/raw/dev/CHANGELOG.md"
distfiles="https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/${version}.tar.gz"
checksum=c3fcccf9502e41c76c30e89530820bf1c7719257e5624bfa5fa77e6627ecb602
if [ -n "$XBPS_CHECK_PKGS" ]; then
configure_args+=" -DBUILD_TESTS=ON"
fi
# missing for finding Vulkan-Headers as #include <vulkan/vulkan.h>
CFLAGS="-I/usr/include"
pre_configure() {
# disable most package managers by default using horrible hacks, because upstream did it weird
mkdir -p build && cd build
configure_args+="$(CMAKE_GENERATOR="Ninja" cmake -L ${wrksrc}/${build_wrksrc} | \
grep -oE 'PACKAGES_DISABLE_[a-zA-Z0-9]+' | \
grep -viE 'xbps|flatpak|nix|guix' | xargs printf ' -D%s=ON')"
}
post_install() {
vlicense LICENSE
}