mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
2f59341fe2
closes #5248
18 lines
453 B
YAML
18 lines
453 B
YAML
distributable:
|
|
url: https://github.com/libffi/libffi/releases/download/v{{version}}/libffi-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: libffi/libffi/tags
|
|
|
|
build:
|
|
- ./configure --prefix={{prefix}} --disable-debug
|
|
- make --jobs {{ hw.concurrency }} install
|
|
|
|
test:
|
|
dependencies:
|
|
freedesktop.org/pkg-config: ^0.29
|
|
script:
|
|
- cc -o closure test.c $(pkg-config --libs libffi) -Wno-incompatible-pointer-types
|
|
- ./closure
|