mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
40 lines
820 B
YAML
40 lines
820 B
YAML
distributable:
|
|
url: https://www.x.org/archive/individual/lib/libXrender-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://www.x.org/archive/individual/lib/
|
|
match: /libXrender-\d+\.\d+\.\d+.tar.gz/
|
|
strip:
|
|
- /libXrender-/
|
|
- /.tar.gz/
|
|
|
|
dependencies:
|
|
x.org/x11: ^1
|
|
x.org/protocol: '*'
|
|
|
|
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:
|
|
script: |
|
|
mv $FIXTURE x.c
|
|
cc x.c
|
|
./a.out
|
|
fixture: |
|
|
#include <X11/Xlib.h>
|
|
#include <X11/extensions/Xrender.h>
|
|
int main(int argc, char* argv[]) {
|
|
XRenderColor color;
|
|
return 0;
|
|
}
|