pantry/projects/pixman.org/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

26 lines
600 B
YAML

distributable:
url: https://cairographics.org/releases/pixman-{{ version }}.tar.gz
strip-components: 1
versions:
github: freedesktop/pixman/tags
strip: /^pixman-/
build:
dependencies:
script: |
./configure --prefix={{ prefix }} --disable-debug
make --jobs {{ hw.concurrency }}
make install
test:
dependencies:
freedesktop.org/pkg-config: ^0.29
script: |
cc test.c -lpixman-1 $CFLAGS
./a.out
env:
# using pkg-config as pixman puts its headers in `include/pixman-1`
LDFLAGS: $(pkg-config --libs pixman-1)
CFLAGS: $(pkg-config --cflags pixman-1)