new file: projects/x.org/xcursor/package.yml (#3345)

new file:   projects/x.org/xcursor/test.c
This commit is contained in:
Andrew 2023-09-17 19:46:57 +03:00 committed by GitHub
parent 08981e8875
commit 5525b6ebf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,38 @@
distributable:
url: https://www.x.org/archive/individual/lib/libXcursor-{{version}}.tar.xz
strip-components: 1
versions:
url: https://xorg.freedesktop.org/archive/individual/lib/
match: /libXcursor-\d+\.\d+\.\d+\.tar\.xz/
strip:
- /^libXcursor-/
- /\.tar\.xz/
dependencies:
x.org/x11: '*'
x.org/xfixes: '*'
x.org/xrender: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
freedesktop.org/pkg-config: '*'
x.org/util-macros: '*'
script:
- ./configure $ARGS
- make --jobs {{ hw.concurrency }}
- make --jobs {{ hw.concurrency }} install
env:
ARGS:
- --prefix={{prefix}}
- --sysconfdir={{tea.prefix}}/x.org/etc
- --localstatedir={{tea.prefix}}/x.org/var
- --disable-dependency-tracking
- --disable-silent-rules
test:
dependencies:
tea.xyz/gx/cc: c99
freedesktop.org/pkg-config: '*'
script:
- pkg-config --modversion xcursor | grep {{version}}
- cc test.c -o test
- ./test

View file

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