updater-libfontenc-1.1.8 — libfontenc → 1.1.8 (#13045)

* Modernize libfontenc

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

* Update to commit with meson enabled.

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

* updater-libfontenc-1.1.8: Package File Update Run on linux/386 container.

* updater-libfontenc-1.1.8: Package File Update Run on linux/amd64 container.

* updater-libfontenc-1.1.8: Package File Update Run on linux/arm/v7 container.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
chromebrew-actions[bot]
2025-10-04 13:21:04 -05:00
committed by GitHub
parent 918796f9f3
commit 68417386f4
4 changed files with 15 additions and 29 deletions

View File

@@ -1,7 +1,5 @@
# Total size: 151382
# Total size: 23583
/usr/local/include/X11/fonts/fontenc.h
/usr/local/lib/libfontenc.a
/usr/local/lib/libfontenc.la
/usr/local/lib/libfontenc.so
/usr/local/lib/libfontenc.so.1
/usr/local/lib/libfontenc.so.1.0.0

View File

@@ -1,7 +1,5 @@
# Total size: 176326
# Total size: 32107
/usr/local/include/X11/fonts/fontenc.h
/usr/local/lib/libfontenc.a
/usr/local/lib/libfontenc.la
/usr/local/lib/libfontenc.so
/usr/local/lib/libfontenc.so.1
/usr/local/lib/libfontenc.so.1.0.0

View File

@@ -1,7 +1,5 @@
# Total size: 180418
# Total size: 34761
/usr/local/include/X11/fonts/fontenc.h
/usr/local/lib64/libfontenc.a
/usr/local/lib64/libfontenc.la
/usr/local/lib64/libfontenc.so
/usr/local/lib64/libfontenc.so.1
/usr/local/lib64/libfontenc.so.1.0.0

View File

@@ -1,34 +1,26 @@
require 'package'
require 'buildsystems/meson'
class Libfontenc < Package
class Libfontenc < Meson
description 'Fontenc Library from X.org'
homepage 'https://xorg.freedesktop.org/wiki/'
version '1.1.7'
version '1.1.8-dcdbcce'
license 'MIT'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/lib/libfontenc-1.1.7.tar.xz'
source_sha256 'c0d36991faee06551ddbaf5d99266e97becdc05edfae87a833c3ff7bf73cfec2'
source_url 'https://gitlab.freedesktop.org/xorg/lib/libfontenc.git'
git_hashtag 'dcdbcce903ee49200040c0da092b45253c20c6df'
# git_hashtag "libfontenc-#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '8d2dee2568b7a2389cff4435c26653fe56c8b3bda1132ec74215ed87ca8eb287',
armv7l: '8d2dee2568b7a2389cff4435c26653fe56c8b3bda1132ec74215ed87ca8eb287',
i686: '20d2b4358c6b10ac9f215919ec0b57691565d7dd1e8883d32397ed5b1d773b32',
x86_64: '4331cdbb4108722b6fc8d05249cdba21b67e917270ccba8b03b17808176dc30f'
aarch64: 'd70cccae338c12cd80cb891b8f1694a70cdba76da9d077a39e3eea271405fd1a',
armv7l: 'd70cccae338c12cd80cb891b8f1694a70cdba76da9d077a39e3eea271405fd1a',
i686: '8ad3c20ea1adfe41284ae9f87dc3120bdae83538213da0fbb54e5334940dffc2',
x86_64: '419779b15ee846873388eee1ab46cbb8fc31dab220443043f15abaa59698be31'
})
depends_on 'xorg_proto'
depends_on 'xorg_proto' => :build
depends_on 'glibc' # R
depends_on 'zlib' # R
def self.build
system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh'
system "./configure #{CREW_CONFIGURE_OPTIONS} \
--with-fontrootdir=#{CREW_PREFIX}/share/fonts/X11"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
meson_options "-Dwith-fontrootdir=#{CREW_PREFIX}/share/fonts/X11"
end