+x.org/xt

This commit is contained in:
Marc Seitz 2023-04-13 19:18:14 +02:00 committed by Max Howell
parent 3b433bd9b1
commit 60ee00d984

View file

@ -0,0 +1,43 @@
distributable:
url: https://www.x.org/archive/individual/lib/libXt-{{version}}.tar.xz
strip-components: 1
versions:
- 1.3.0
dependencies:
x.org/ice: '*'
x.org/sm: '*'
x.org/x11: '*'
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 \
--with-appdefaultdir="$SHELF"/etc/X11/app-defaults
make --jobs {{ hw.concurrency }} install
env:
SHELF: ${{tea.prefix}}/x.org
test:
dependencies:
tea.xyz/gx/cc: c99
script: |
mv $FIXTURE test.c
cc test.c
./a.out
fixture: |
#include "X11/IntrinsicP.h"
#include "X11/CoreP.h"
int main(int argc, char* argv[]) {
CoreClassPart *range;
return 0;
}