wayland.freedesktop.org (#2580)

* wayland.freedesktop.org

* tea.xyz/gx/cc: c99
This commit is contained in:
Andrew 2023-07-15 21:09:39 +03:00 committed by GitHub
parent 4bf0723664
commit 042bb53d30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,41 @@
distributable:
url: https://gitlab.freedesktop.org/wayland/wayland/-/releases/{{version}}/downloads/wayland-{{version}}.tar.xz
strip-components: 1
display-name: wayland
platforms:
- linux
versions:
gitlab: gitlab.freedesktop.org:wayland/wayland
dependencies:
libexpat.github.io: '*'
sourceware.org/libffi: '*'
gnome.org/libxml2: '*'
build:
dependencies:
mesonbuild.com: '*'
ninja-build.org: '*'
tea.xyz/gx/cc: c99
gnu.org/make: '*'
cmake.org: '*'
freedesktop.org/pkg-config: '*'
working-directory: build
script:
- meson $ARGS ..
- ninja -v
- ninja install -v
env:
ARGS:
- --prefix={{prefix}}
- --libdir={{prefix}}/lib
- --buildtype=release
- --wrap-mode=nofallback
- -Dtests=false
- -Ddocumentation=false
provides:
- bin/wayland-scanner
test:
dependencies:
tea.xyz/gx/cc: c99
script:
- cc test.c -o test
- ./test

View file

@ -0,0 +1,8 @@
#include "wayland-server.h"
#include "wayland-client.h"
int main(int argc, char* argv[]) {
const char *socket;
struct wl_protocol_logger *logger;
return 0;
}