2023-04-13 20:29:48 +03:00
|
|
|
distributable:
|
|
|
|
url: https://www.x.org/archive/individual/lib/libXaw-{{version}}.tar.xz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
2023-05-01 20:14:59 +03:00
|
|
|
url: https://www.x.org/archive/individual/lib/
|
|
|
|
match: /libXaw-\d+\.\d+\.\d+.tar.gz/
|
|
|
|
strip:
|
|
|
|
- /libXaw-/
|
|
|
|
- /.tar.gz/
|
2023-04-13 20:29:48 +03:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
x.org/x11: '*'
|
|
|
|
x.org/exts: '*'
|
|
|
|
x.org/xmu: '*'
|
|
|
|
x.org/xt: '*'
|
|
|
|
x.org/xpm: '*'
|
|
|
|
|
|
|
|
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/Xaw/Text.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
XawTextScrollMode mode;
|
|
|
|
return 0;
|
|
|
|
}
|