void-packages/srcpkgs/fastfetch/template

37 lines
1.3 KiB
Bash

# Template file for 'fastfetch'
pkgname=fastfetch
version=2.30.1
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=5248311a3d8ce65f6f48756dfc0df9f8922d64f5201ee8d980497d52e924906e
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
}