mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 16:35:07 +03:00
fix(libmd)
This commit is contained in:
parent
4341e71540
commit
5a64f81b39
1 changed files with 11 additions and 5 deletions
|
@ -9,13 +9,19 @@ build:
|
|||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
gnu.org/autoconf: '*'
|
||||
gnu.org/patch: '*'
|
||||
script: |
|
||||
# Combats "error: aliases are not supported on darwin"
|
||||
patch -p1 <props/patch-symbol-alias.diff
|
||||
crates.io/semverator: '*'
|
||||
script:
|
||||
# Combats "error: aliases are not supported on darwin" on versions
|
||||
# prior to 1.1.0.
|
||||
- run: |
|
||||
if semverator lt 1.1.0 {{version}}; then
|
||||
patch -p1 <props/patch-symbol-alias.diff
|
||||
fi
|
||||
|
||||
./configure --prefix={{prefix}}
|
||||
make --jobs {{hw.concurrency}} install
|
||||
- ./configure --prefix={{prefix}}
|
||||
- make --jobs {{hw.concurrency}} install
|
||||
|
||||
test:
|
||||
dependencies:
|
||||
|
|
Loading…
Reference in a new issue