mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
32 lines
781 B
YAML
32 lines
781 B
YAML
distributable:
|
|
url: https://xcb.freedesktop.org/dist/xcb-util-{{version}}.tar.xz
|
|
strip-components: 1
|
|
versions:
|
|
url: https://xcb.freedesktop.org/dist/
|
|
match: /xcb-util-\d+\.\d+\.\d+\.tar\.xz/
|
|
strip:
|
|
- /^xcb-util-/
|
|
- /\.tar\.xz/
|
|
dependencies:
|
|
x.org/xcb: '*'
|
|
build:
|
|
dependencies:
|
|
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:
|
|
freedesktop.org/pkg-config: '*'
|
|
script:
|
|
- cc test.c -o test
|
|
- ./test
|
|
- pkg-config --modversion xcb-util | grep {{version}}
|