Files
chromebrew/packages/fastfetch.rb
chromebrew-actions[bot] 38439537ab gparted -> 1.8.1 in updater-gparted-1.8.1 — gparted: 1.8.0 → 1.8.1 (#15055)
* gparted -> 1.8.1 in updater-gparted-1.8.1

* updater-gparted-1.8.1: Package File Update Run on linux/amd64 container.

* updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container.

* updater-gparted-1.8.1: Package File Update Run on linux/amd64 container.

* Cleanup gparted.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update dependencies to use :executable instead of :executable_only

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
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>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2026-03-19 00:13:29 +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.60.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: 'f6147efaf9c07b124d165e5bdb45a3b8a981a5cbb4af9e5c426b829b4f301b45',
armv7l: 'f6147efaf9c07b124d165e5bdb45a3b8a981a5cbb4af9e5c426b829b4f301b45',
x86_64: '382100770a54a57452e60aead6ac8d11dde98894d11b4dbf8775675afa122b3d'
})
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