new file: projects/x.org/xcomposite/package.yml

new file:   projects/x.org/xcomposite/test.c
This commit is contained in:
Andrii Riabchenko 2023-09-25 14:05:38 +03:00 committed by Jacob Heider
parent 2ac5327dd1
commit 9c16f754ac
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,36 @@
distributable:
url: https://www.x.org/archive/individual/lib/libXcomposite-{{version}}.tar.xz
strip-components: 1
versions:
url: https://www.x.org/archive/individual/lib/
match: /libXcomposite-\d+\.\d+\.\d+\.tar\.xz/
strip:
- /^libXcomposite-/
- /\.tar\.xz/
dependencies:
x.org/x11: '*'
x.org/xfixes: '*'
x.org/protocol: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
freedesktop.org/pkg-config: '*'
script:
- ./configure $CONFIGURE_ARGS
- make --jobs {{ hw.concurrency }}
- make --jobs {{ hw.concurrency }} install
env:
CONFIGURE_ARGS:
- --disable-debug
- --disable-dependency-tracking
- --prefix="{{prefix}}"
- --libdir="{{prefix}}/lib"
test:
dependencies:
tea.xyz/gx/cc: c99
freedesktop.org/pkg-config: '*'
script:
- cc test.c -o test
- ./test
- pkg-config --modversion xcomposite | grep {{version}}

View file

@ -0,0 +1,6 @@
#include "X11/Xlib.h"
#include "X11/extensions/Xcomposite.h"
int main() {
return 0;
}