x.org/xinerama (#2353)

* x.org/xinerama

* test deps
This commit is contained in:
Andrew 2023-07-02 22:44:55 +03:00 committed by GitHub
parent 0d42bdcb4f
commit b1349cf4c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,41 @@
distributable:
url: https://www.x.org/archive/individual/lib/libXinerama-{{version}}.tar.xz
strip-components: 1
versions:
url: https://xorg.freedesktop.org/archive/individual/lib/
match: /libXinerama-\d+\.\d+(\.\d+)?\.tar\.xz/
strip:
- /libXinerama-/
- /.tar.xz/
dependencies:
x.org/x11: '*'
x.org/protocol: '*'
x.org/exts: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
freedesktop.org/pkg-config: '*'
script:
- ./configure $ARGS
- make --jobs {{ hw.concurrency }}
- make --jobs {{ hw.concurrency }} install
env:
ARGS:
- --prefix="{{prefix}}"
- --disable-dependency-tracking
- --disable-silent-rules
- --sysconfdir={{tea.prefix}}/x.org/etc
- --localstatedir={{tea.prefix}}/x.org/var
test:
dependencies:
tea.xyz/gx/cc: c99
freedesktop.org/pkg-config: '*'
script:
- cc test.c
- pkg-config --modversion xinerama | grep {{version}}

View file

@ -0,0 +1,6 @@
#include "X11/extensions/Xinerama.h"
int main(int argc, char* argv[]) {
XineramaScreenInfo info;
return 0;
}