internal/rosa/x: xextproto artifact
All checks were successful
Test / Create distribution (push) Successful in 1m3s
Test / Sandbox (push) Successful in 2m43s
Test / Hakurei (push) Successful in 3m48s
Test / ShareFS (push) Successful in 3m51s
Test / Sandbox (race detector) (push) Successful in 5m19s
Test / Hakurei (race detector) (push) Successful in 6m26s
Test / Flake checks (push) Successful in 1m22s

Required by Xlib.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-03 03:56:33 +09:00
parent e024d3184a
commit 92d1a8591f
2 changed files with 32 additions and 0 deletions

View File

@@ -166,6 +166,7 @@ const (
XCB
XCBProto
XDGDBusProxy
XExtProto
XZ
Xproto
Zlib

View File

@@ -90,6 +90,37 @@ func init() {
}
}
func (t Toolchain) newXExtProto() (pkg.Artifact, string) {
const (
version = "7.3.0"
checksum = "4E3cMHAOVDb-h2M0ascAPU51YFNDy0xB5ih-Zw_8KK9y0aO9DskyGtvLk8zKsSUc"
)
return t.NewPackage("xextproto", version, newFromGitLab(
"gitlab.freedesktop.org",
"xorg/proto/xextproto",
"xextproto-"+version,
checksum,
), nil, &MakeHelper{
Generate: "NOCONFIGURE=1 ./autogen.sh",
},
Automake,
PkgConfig,
utilMacros,
), version
}
func init() {
artifactsM[XExtProto] = Metadata{
f: Toolchain.newXExtProto,
Name: "xextproto",
Description: "X Protocol Extensions",
Website: "https://gitlab.freedesktop.org/xorg/proto/xextproto",
ID: 13647,
}
}
func (t Toolchain) newLibXau() (pkg.Artifact, string) {
const (
version = "1.0.12"