mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
PHP fix versions (#1921)
* fix versions * fixes * work around arch isses * final form (maybe) --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
parent
860b28ccea
commit
d6665c92c8
|
@ -3,8 +3,11 @@ distributable:
|
||||||
strip-components: 1
|
strip-components: 1
|
||||||
|
|
||||||
versions:
|
versions:
|
||||||
github: php/php-src/tags
|
url: https://www.php.net/downloads.php
|
||||||
strip: /^php-/
|
match: /php-\d+\.\d+\.\d+.tar.gz/
|
||||||
|
strip:
|
||||||
|
- /^php-/
|
||||||
|
- /\.tar\.gz$/
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
gnu.org/bison: '*'
|
gnu.org/bison: '*'
|
||||||
|
@ -48,8 +51,13 @@ build:
|
||||||
script: |
|
script: |
|
||||||
./configure $ARGS
|
./configure $ARGS
|
||||||
make --jobs {{ hw.concurrency }} install
|
make --jobs {{ hw.concurrency }} install
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
# FIXME: this appears to be a regression related to
|
||||||
|
# https://github.com/teaxyz/brewkit/pull/99
|
||||||
|
# It's breaking certain ld invocations, due to:
|
||||||
|
# TEA_PREFIX mysteriously unset
|
||||||
|
# collect2: error: ld returned 1 exit status
|
||||||
|
TEA_PREFIX: $(tea --prefix)
|
||||||
ARGS:
|
ARGS:
|
||||||
- --prefix={{prefix}}
|
- --prefix={{prefix}}
|
||||||
- --enable-bcmath
|
- --enable-bcmath
|
||||||
|
|
Loading…
Reference in a new issue