aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/x.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/x.go')
-rw-r--r--internal/rosa/x.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/internal/rosa/x.go b/internal/rosa/x.go
index c19bae6b..9572c1cb 100644
--- a/internal/rosa/x.go
+++ b/internal/rosa/x.go
@@ -300,6 +300,44 @@ func init() {
}
}
+func (t Toolchain) newLibXxf86vm() (pkg.Artifact, string) {
+ const (
+ version = "1.1.7"
+ checksum = "mS4cgKWrwz6M1Lb6Qu4ZVh8Xn2Ca_4HXPxr3LDad4iYY1LecZfeLUPW1hkp6amX_"
+ )
+ return t.NewPackage("libXxf86vm", version, newFromGitLab(
+ "gitlab.freedesktop.org",
+ "xorg/lib/libxxf86vm",
+ "libXxf86vm-"+version,
+ checksum,
+ ), nil, &MakeHelper{
+ Generate: "NOCONFIGURE=1 ./autogen.sh",
+ },
+ Automake,
+ Libtool,
+ PkgConfig,
+
+ utilMacros,
+ LibXext,
+ XorgProto,
+ ), version
+}
+func init() {
+ artifactsM[LibXxf86vm] = Metadata{
+ f: Toolchain.newLibXxf86vm,
+
+ Name: "libXxf86vm",
+ Description: "Xlib-based library for the XFree86-VidMode X extension",
+ Website: "https://gitlab.freedesktop.org/xorg/lib/libxxf86vm",
+
+ Dependencies: P{
+ LibXext,
+ },
+
+ ID: 1799,
+ }
+}
+
func (t Toolchain) newLibpciaccess() (pkg.Artifact, string) {
const (
version = "0.19"