mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
9c16f754ac
new file: projects/x.org/xcomposite/test.c
37 lines
927 B
YAML
37 lines
927 B
YAML
distributable:
|
|
url: https://www.x.org/archive/individual/lib/libXcomposite-{{version}}.tar.xz
|
|
strip-components: 1
|
|
versions:
|
|
url: https://www.x.org/archive/individual/lib/
|
|
match: /libXcomposite-\d+\.\d+\.\d+\.tar\.xz/
|
|
strip:
|
|
- /^libXcomposite-/
|
|
- /\.tar\.xz/
|
|
dependencies:
|
|
x.org/x11: '*'
|
|
x.org/xfixes: '*'
|
|
x.org/protocol: '*'
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
freedesktop.org/pkg-config: '*'
|
|
script:
|
|
- ./configure $CONFIGURE_ARGS
|
|
- make --jobs {{ hw.concurrency }}
|
|
- make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
CONFIGURE_ARGS:
|
|
- --disable-debug
|
|
- --disable-dependency-tracking
|
|
- --prefix="{{prefix}}"
|
|
- --libdir="{{prefix}}/lib"
|
|
test:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
freedesktop.org/pkg-config: '*'
|
|
script:
|
|
- cc test.c -o test
|
|
- ./test
|
|
- pkg-config --modversion xcomposite | grep {{version}}
|