Files
chromebrew/packages/fastfetch.rb
chromebrew-actions[bot] a66f355592 fastfetch -> 2.61.0 in updater-fastfetch-2.61.0 — fastfetch: 2.60.0 → 2.61.0 (#15270)
* fastfetch -> 2.61.0 in updater-fastfetch-2.61.0

* updater-fastfetch-2.61.0: Package File Update Run on linux/amd64 container.

* updater-fastfetch-2.61.0: Package File Update Run on linux/arm/v7 container.

---------

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2026-03-29 01:24:51 +00:00

31 lines
993 B
Ruby

# Adapted from Arch Linux fastfetch PKGBUILD at:
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=fastfetch
require 'buildsystems/cmake'
class Fastfetch < CMake
description 'Like Neofetch, but much faster because written in C'
homepage 'https://github.com/fastfetch-cli/fastfetch'
version '2.61.0'
license 'MIT'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://github.com/fastfetch-cli/fastfetch.git'
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'e0c631698cadf2ab1ec53d964a0bcaee9fc9029dcab1da7e5497b7b02b1f4240',
armv7l: 'e0c631698cadf2ab1ec53d964a0bcaee9fc9029dcab1da7e5497b7b02b1f4240',
x86_64: '71a283635274d04335f6094b2964a39908aab6dff2635642c02aefc0638946e2'
})
depends_on 'chafa' => :build
depends_on 'gcc_lib' # R
depends_on 'glibc' => :executable
depends_on 'sqlite' => :build
depends_on 'yyjson' => :executable
cmake_options "-DENABLE_SYSTEM_YYJSON=ON \
-DINSTALL_LICENSE=OFF"
end