+x.org/xrender

This commit is contained in:
Max Howell 2023-03-16 13:54:01 -04:00
parent 346a32f703
commit 4b95ae947d
2 changed files with 39 additions and 2 deletions

View file

@ -13,8 +13,6 @@ build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
# ^^ often packages need dependencies to build, it is very common for
# packages to need a C compiler and make, the above provide those
script: |
./configure \
--prefix="{{prefix}}" \

View file

@ -0,0 +1,39 @@
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;
}