mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* f2fs-tools 1.14.0 -> 1.16.0 * faad2 2.10.1 -> 2.11.1 * fakeroot 1.25.3 -> 1.35.1 * faultstat 0.01.01 -> 0.01.11 * fcft 2.5.1 -> 3.1.8 * feh 3.6.3 -> 3.10.3 * fetch 12.0.10 -> 12.0.11 * Add libgnt package * Finch 2.12.0-1 -> 2.14.13 * fish 3.6.1 -> 3.7.1 * flatseal 1.7.5 -> 2.2.0 * flif 0.3 -> 0.4 * fnotifystat 0.02.02 -> 0.03.00 * Foliate 2.6.4 -> 3.1.1 * Folks 0.15.7 -> 0.15.9 * util_macros 1.19.3 -> xorg_macros 1.20.1 * font-util 1.3.2 -> 1.4.1 * font-adobe-100dpi 1.0.3 -> 1.0.4 * font-adobe-75dpi 1.0.3 -> 1.0.4 * font-adobe-utopia-100dpi 1.0.4 -> 1.0.5 * font-adobe-utopia-75dpi 1.0.4 -> 1.0.5 * font-adobe-utopia-type1 1.0.4 -> 1.0.5 * font-bh-100dpi 1.0.3 -> 1.0.4 * font-bh-75dpi 1.0.3 -> 1.0.4 * font-bh-lucidatypewriter-100dpi 1.0.3 -> 1.0.4 * font-bh-lucidatypewriter-75dpi 1.0.3 -> 1.0.4 * font-bh-ttf 1.0.3 -> 1.0.4 * font-bh-type1 1.0.3 -> 1.0.4 * font-bitstream-100dpi 1.0.3 -> 1.0.4 * font-bitstream-75dpi 1.0.3 -> 1.0.4 * font-bitstream-type1 1.0.3 -> 1.0.4 * font-cursor-misc 1.0.3 -> 1.0.4 * font-daewoo-misc 1.0.3 -> 1.0.4 * font-dec-misc 1.0.3 -> 1.0.4 * font-isas-misc 1.0.3 -> 1.0.4 * font-jis-misc 1.0.3 -> 1.0.4 * font-misc-misc 1.1.2 -> 1.1.3 * font-mutt-misc 1.0.3 -> 1.0.4 * Add libspiro package * fontforge 20170731 -> 20230101 * tllist 1.0.5 -> 1.1.0 * foot 1.15.0 -> 1.18.0 * forkstat 0.02.10 -> 0.03.02 * fossil 2.6 -> 2.24 * Fragments 2.1.1 -> 3.0.1 * FreeGLUT 3.2.1 -> 3.6.0
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Foot < Meson
|
|
description 'Wayland terminal emulator - fast, lightweight and minimalistic'
|
|
homepage 'https://codeberg.org/dnkl/foot'
|
|
version '1.18.0'
|
|
license 'MIT'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://codeberg.org/dnkl/foot.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4d867d515e613a68f40d853474f56a62d68ce57b45c0e5b3541fe7fada81d4a7',
|
|
armv7l: '4d867d515e613a68f40d853474f56a62d68ce57b45c0e5b3541fe7fada81d4a7',
|
|
x86_64: 'b15f9dc468b2119adbfc2d41b34cae84a6cd8db639bface1fda065edbc5f51c4'
|
|
})
|
|
|
|
def self.patch
|
|
# threads.h was introduced in glibc 2.28. This is a workaround for pre-M92 systems.
|
|
return unless LIBC_VERSION < '2.28'
|
|
downloader 'https://raw.githubusercontent.com/jtsiomb/c11threads/3b0ee4127ff8e8d954d183c9acc06be9e32aecf2/c11threads.h', '9b8a21dc65ed4891eb4c469adaaa94955b365009b6b8d1858bd91378b0157865', 'threads.h'
|
|
FileUtils.cp('threads.h', 'tests')
|
|
end
|
|
|
|
depends_on 'fcft'
|
|
depends_on 'fontconfig'
|
|
depends_on 'freetype' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libxkbcommon'
|
|
depends_on 'ncurses'
|
|
depends_on 'pixman'
|
|
depends_on 'tllist' => :build
|
|
depends_on 'utf8proc'
|
|
depends_on 'wayland'
|
|
depends_on 'wayland_protocols' => :build
|
|
|
|
# https://codeberg.org/dnkl/foot/issues/1789
|
|
meson_options '-Dwerror=false'
|
|
end
|