distributable: url: https://www.x.org/archive/individual/lib/libXpm-{{version}}.tar.gz strip-components: 1 versions: url: https://www.x.org/archive/individual/lib/ match: /libXpm-\d+\.\d+\.\d+.tar.gz/ strip: - /libXpm-/ - /.tar.gz/ dependencies: x.org/x11: '*' zlib.net: ^1.2 build: dependencies: freedesktop.org/pkg-config: ~0.29 gnu.org/gettext: 0.21 script: | ./configure \ --prefix="{{prefix}}" \ --sysconfdir="$SHELF"/etc \ --localstatedir="$SHELF"/var \ --disable-open-zfile make --jobs {{ hw.concurrency }} install env: SHELF: ${{tea.prefix}}/x.org test: script: | mv $FIXTURE test.c cc test.c ./a.out fixture: | #include "X11/Xlib.h" #include "X11/xpm.h" int main(int argc, char* argv[]) { XpmColor color; return 0; }