pantry/projects/x.org/xdmcp/package.yml
Max Howell 38b45f373b +x.org/xdmcp
Closes #218
2023-03-15 15:04:52 -04:00

38 lines
725 B
YAML

distributable:
url: https://www.x.org/archive/individual/lib/libXdmcp-{{version}}.tar.xz
strip-components: 1
versions:
- 1.1.4
dependencies:
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 test.c
cc test.c
./a.out
fixture: |
#include "X11/Xdmcp.h"
int main(int argc, char* argv[]) {
xdmOpCode code;
return 0;
}