pantry/projects/x.org/exts/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

40 lines
822 B
YAML

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