pantry/projects/x.org/xrender/package.yml
2023-03-16 14:01:26 -04:00

40 lines
781 B
YAML

distributable:
url: https://www.x.org/archive/individual/lib/libXrender-{{version}}.tar.gz
strip-components: 1
versions:
- 0.9.11
dependencies:
x.org/x11: ^1
x.org/protocol: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
freedesktop.org/pkg-config: ~0.29
script: |
./configure \
--prefix="{{prefix}}" \
--sysconfdir="$SHELF"/etc \
--localstatedir="$SHELF"/var
make --jobs {{ hw.concurrency }} install
env:
SHELF: ${{tea.prefix}}/x.org
test:
dependencies:
tea.xyz/gx/cc: c99
script: |
mv $FIXTURE x.c
cc x.c
./a.out
fixture: |
#include <X11/Xlib.h>
#include <X11/extensions/Xrender.h>
int main(int argc, char* argv[]) {
XRenderColor color;
return 0;
}