1
0
forked from rosa/hakurei

internal/rosa/x: libxcvt artifact

Required by xserver.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-14 01:23:46 +09:00
parent ee1dffb676
commit e580307528
2 changed files with 25 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ const (
Libtool Libtool
Libucontext Libucontext
Libunistring Libunistring
Libxcvt
Libxkbfile Libxkbfile
Libxml2 Libxml2
Libxshmfence Libxshmfence

View File

@@ -659,6 +659,30 @@ func init() {
} }
} }
func (t Toolchain) newLibxcvt() (pkg.Artifact, string) {
const (
version = "0.1.3"
checksum = "IfIA7SxlHMWh681e1AgYmZcRAfkZd5LlzmqcMRifNY5nNVRrUx_wnoaidAv0Yu03"
)
return t.NewPackage("libxcvt", version, newFromGitLab(
"gitlab.freedesktop.org",
"xorg/lib/libxcvt",
"libxcvt-"+version,
checksum,
), nil, (*MesonHelper)(nil)), version
}
func init() {
artifactsM[Libxcvt] = Metadata{
f: Toolchain.newLibxcvt,
Name: "libxcvt",
Description: "VESA CVT standard timing modeline generation library & utility",
Website: "https://gitlab.freedesktop.org/xorg/lib/libxcvt",
ID: 235147,
}
}
func (t Toolchain) newLibpciaccess() (pkg.Artifact, string) { func (t Toolchain) newLibpciaccess() (pkg.Artifact, string) {
const ( const (
version = "0.19" version = "0.19"