Files
hammer/recipes/incoming-clib/utf8proc.toml
T
sergio 0bc8dd9487 foot-chain: tllist/utf8proc/scdoc construyen (libs hoja para fcft/foot)
tllist b3:43171202 (header-only, meson), utf8proc b3:db4ac2c7 (Unicode, libutf8proc.a), scdoc
b3:5194cf5b (man-gen). utf8proc/scdoc buildearon sin editar; tllist migrado al patrón meson.
Leaf libs de la cadena que destraba el terminal Wayland foot.
2026-07-11 00:49:02 -04:00

34 lines
1.1 KiB
TOML

# Importada de Alpine aports por `hammer import-alpine` (Etapa G). PUNTO DE PARTIDA — pero
# YA trae los parches de musl de Alpine (lo que un import de nix pierde). Pendiente: el
# sha256 del tarball (el wrapper lo calcula), y adaptar build/install del shell de abuild.
name = "utf8proc"
version = "2.11.3"
[source]
tarball = "https://github.com/JuliaLang/utf8proc/archive/v2.11.3/utf8proc-2.11.3.tar.gz"
# FIXME sha256: el wrapper lo calcula (Alpine publica sha512). sha512 de Alpine:
# sha512 = "148701fce506d076f03497b6d085f1993eff743debad4a2f6d3cbac91e19a5c22d9938245bdb460c1b22b51842c7416c42124db7416c684ee63d622490baac0e"
sha256 = "abfed50b6d4da51345713661370290f4f4747263ee73dc90356299dfc7990c78"
[build]
compiler = "zig-cc"
target = "x86_64-linux-musl"
link = "static"
flags = []
[build.phases]
# de build() de Alpine (traducido; el lab provee $CBUILD/$CHOST — Etapa G Fase 3; revisá --shared para estático):
compile = '''
_abuild_phase() {
make
}
_abuild_phase
'''
# de package() de Alpine (traducido $pkgdir→/out):
install = '''
_abuild_phase() {
make DESTDIR="/out" prefix=/usr install
}
_abuild_phase
'''