mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
31 lines
577 B
YAML
31 lines
577 B
YAML
distributable:
|
|
url: https://downloads.sourceforge.net/project/swig/swig/swig-{{version}}/swig-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: swig/swig/tags
|
|
|
|
dependencies:
|
|
pcre.org/v2: '*'
|
|
|
|
runtime:
|
|
env:
|
|
SWIG_LIB: ${{prefix}}/lib
|
|
|
|
build:
|
|
script: |
|
|
./configure --prefix="{{prefix}}" --with-swiglibdir={{prefix}}/lib
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
|
|
provides:
|
|
- bin/swig
|
|
- bin/ccache-swig
|
|
|
|
test:
|
|
dependencies:
|
|
ruby-lang.org: ^3
|
|
script: |
|
|
swig -ruby fixture.i
|
|
cc -c -fPIC -fdeclspec fixture.c fixture_wrap.c
|