mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
28 lines
578 B
YAML
28 lines
578 B
YAML
distributable:
|
|
url: https://pkgconfig.freedesktop.org/releases/pkg-config-{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
provides:
|
|
- bin/pkg-config
|
|
|
|
versions:
|
|
github: freedesktop/pkg-config/tags
|
|
strip: /^pkg-config-/
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |-
|
|
./configure \
|
|
--prefix="{{ prefix }}" \
|
|
--disable-debug \
|
|
--disable-host-tool \
|
|
--with-internal-glib \
|
|
--with-pc-path=/usr/lib/pkgconfig #FIXME
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
|
|
test:
|
|
script: pkg-config --version
|