2023-04-13 20:07:48 +03:00
|
|
|
distributable:
|
2023-05-01 20:14:59 +03:00
|
|
|
url: https://www.x.org/archive/individual/lib/libICE-{{version}}.tar.gz
|
2023-04-13 20:07:48 +03:00
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
2023-05-01 20:14:59 +03:00
|
|
|
url: https://www.x.org/archive/individual/lib/
|
|
|
|
match: /libICE-\d+\.\d+\.\d+.tar.gz/
|
|
|
|
strip:
|
|
|
|
- /libICE-/
|
|
|
|
- /.tar.gz/
|
2023-04-13 20:07:48 +03:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
x.org/protocol: '*'
|
|
|
|
|
|
|
|
build:
|
|
|
|
dependencies:
|
|
|
|
freedesktop.org/pkg-config: ~0.29
|
|
|
|
x.org/xtrans: '*'
|
|
|
|
script: |
|
|
|
|
./configure $ARGS
|
|
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
env:
|
2023-10-02 04:27:27 +03:00
|
|
|
SHELF: ${{pkgx.prefix}}/x.org
|
2023-04-13 20:07:48 +03:00
|
|
|
ARGS:
|
|
|
|
- --prefix="{{prefix}}"
|
|
|
|
- --sysconfdir="$SHELF"/etc
|
|
|
|
- --localstatedir="$SHELF"/var
|
|
|
|
- --disable-dependency-tracking
|
|
|
|
- --disable-silent-rules
|
|
|
|
- --enable-docs=no
|
|
|
|
- --enable-specs=no
|
|
|
|
|
|
|
|
test:
|
|
|
|
dependencies:
|
|
|
|
x.org/x11: '*'
|
|
|
|
script: |
|
|
|
|
mv $FIXTURE test.c
|
|
|
|
cc test.c
|
|
|
|
./a.out
|
|
|
|
fixture: |
|
|
|
|
#include "X11/Xlib.h"
|
|
|
|
#include "X11/ICE/ICEutil.h"
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
IceAuthFileEntry entry;
|
|
|
|
return 0;
|
|
|
|
}
|