mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
27 lines
662 B
YAML
27 lines
662 B
YAML
distributable:
|
|
url: https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://www.bytereef.org/mpdecimal/download.html
|
|
match: /mpdecimal-\d+\.\d+\.\d+\.tar\.gz/
|
|
strip:
|
|
- /mpdecimal-/
|
|
- /.tar.gz/
|
|
|
|
build:
|
|
script: |
|
|
./configure --prefix={{ prefix }}
|
|
make --jobs {{hw.concurrency}}
|
|
make install
|
|
rm -rf {{prefix}}/share # docs are online
|
|
env:
|
|
darwin:
|
|
# fixes a ruby-machos error
|
|
LDFLAGS: -headerpad_max_install_names $LDFLAGS
|
|
LDXXFLAGS: -headerpad_max_install_names $LDXXFLAGS
|
|
test:
|
|
script: |
|
|
cc test.c -o test -lmpdec
|
|
./test
|