diff --git a/app-misc/fastfetch/fastfetch-2.35.0.recipe b/app-misc/fastfetch/fastfetch-2.36.0.recipe similarity index 63% rename from app-misc/fastfetch/fastfetch-2.35.0.recipe rename to app-misc/fastfetch/fastfetch-2.36.0.recipe index de525ebc1..12c55622e 100644 --- a/app-misc/fastfetch/fastfetch-2.35.0.recipe +++ b/app-misc/fastfetch/fastfetch-2.36.0.recipe @@ -1,18 +1,18 @@ -SUMMARY="A maintained, feature-rich and performance oriented, neofetch like system information tool." +SUMMARY="Maintained, feature-rich and performance oriented, system information tool" DESCRIPTION="Fastfetch is a neofetch-like tool for fetching system information \ and displaying it prettily. \ It is written mainly in C, with performance and customizability in mind. \ Currently, Linux, Android, FreeBSD, macOS, SunOS and Windows 7+ are supported." HOMEPAGE="https://github.com/fastfetch-cli/fastfetch" COPYRIGHT="2021-2023 Linus Dierheimer - 2022-2024 Carter Li" + 2022-2025 Carter Li" LICENSE="MIT" REVISION="1" SOURCE_URI="https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/$portVersion.tar.gz" -CHECKSUM_SHA256="58a95e6b714e41efc804eca389a223309169b2def35e57fa934482a6b47c27e7" +CHECKSUM_SHA256="bdbe5c7672aeacfec15ec7539f718e666c5206b1a3de9bbf8bd1b3d3c9c997e7" -ARCHITECTURES="?all !x86_gcc2" -SECONDARY_ARCHITECTURES="?x86" +ARCHITECTURES="all !x86_gcc2" +SECONDARY_ARCHITECTURES="x86" commandSuffix=$secondaryArchSuffix commandBinDir=$binDir @@ -24,8 +24,9 @@ fi #USER_SETTINGS_FILES="$relativeSettingsDir/neofetch/config.conf" PROVIDES=" - fastfetch = $portVersion + fastfetch$secondaryArchSuffix = $portVersion cmd:fastfetch$commandSuffix = $portVersion + cmd:flashfetch$commandSuffix = $portVersion " REQUIRES=" haiku${secondaryArchSuffix} @@ -38,13 +39,18 @@ BUILD_PREREQUIRES=" cmd:cmake cmd:g++${secondaryArchSuffix} cmd:make + cmd:pkg_config$secondaryArchSuffix + cmd:python3 " BUILD() { - mkdir build + mkdir -p build cd build - cmake .. + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + $cmakeDirArgs \ + -DCMAKE_INSTALL_BINDIR=bin \ + .. make $jobArgs # TODO } @@ -52,5 +58,6 @@ BUILD() INSTALL() { #TODO - #make install PREFIX="$prefix" MANDIR="$manDir" + cd build + make install #PREFIX="$prefix" MANDIR="$manDir" }