mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* py3_setuptools => 75.0.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add fastfetch, yyjson, and py3 updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
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.24.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/fastfetch-cli/fastfetch.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '944bd9ff6ad0aae3cb20f9d5d1a324112c7f7a4327160883c5440aa3cc74283f',
|
|
armv7l: '944bd9ff6ad0aae3cb20f9d5d1a324112c7f7a4327160883c5440aa3cc74283f',
|
|
i686: 'f7b37001b542c035b7a662cea8e3b52badc176e94baaee349fc353a1959089a9',
|
|
x86_64: '51bd182ee9893ff245f687399a6b5ae2c44fbc6d21d4db218bf5665089e13244'
|
|
})
|
|
|
|
depends_on 'gcc_lib'
|
|
depends_on 'chafa' => :build
|
|
depends_on 'sqlite' => :build
|
|
depends_on 'glibc' # R
|
|
depends_on 'yyjson' # R
|
|
|
|
# The videodev linux header files are too old on the i686 kernel.
|
|
# See https://github.com/fastfetch-cli/fastfetch/issues/1265
|
|
cmake_options "-DENABLE_SQLITE3=ON \
|
|
-DENABLE_RPM=OFF \
|
|
-DENABLE_IMAGEMAGICK6=OFF \
|
|
-DENABLE_IMAGEMAGICK7=OFF \
|
|
-DENABLE_SYSTEM_YYJSON=ON \
|
|
-DINSTALL_LICENSE=OFF \
|
|
#{ARCH == 'i686' ? '-DHAVE_LINUX_VIDEODEV2=false' : ''}"
|
|
end
|