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

43 lines
845 B
YAML

distributable:
url: https://www.x.org/archive/individual/lib/libXaw-{{version}}.tar.xz
strip-components: 1
versions:
url: https://www.x.org/archive/individual/lib/
match: /libXaw-\d+\.\d+\.\d+.tar.gz/
strip:
- /libXaw-/
- /.tar.gz/
dependencies:
x.org/x11: '*'
x.org/exts: '*'
x.org/xmu: '*'
x.org/xt: '*'
x.org/xpm: '*'
build:
dependencies:
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:
script: |
mv $FIXTURE test.c
cc test.c
./a.out
fixture: |
#include "X11/Xaw/Text.h"
int main(int argc, char* argv[]) {
XawTextScrollMode mode;
return 0;
}