mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
a4b56ebfdb
closes #5129 closes #5124 closes #5022
41 lines
1,017 B
YAML
41 lines
1,017 B
YAML
distributable:
|
||
url: https://github.com/CocoaPods/CocoaPods/archive/{{version}}.tar.gz
|
||
strip-components: 1
|
||
|
||
versions:
|
||
github: CocoaPods/CocoaPods
|
||
|
||
dependencies:
|
||
# 3.3.0 gives a the same segfault as
|
||
# https://stackoverflow.com/questions/77725755/segmentation-fault-during-rails-assetsprecompile-on-apple-silicon-m3-with-rub
|
||
# on linux/aarch64 since 1.5.0
|
||
ruby-lang.org: ~3.2
|
||
sourceware.org/libffi: ^3
|
||
rubygems.org: ^3
|
||
git-scm.org: ^2
|
||
|
||
build:
|
||
env:
|
||
GEM_HOME: ${{prefix}}
|
||
GEM_PATH: ${{prefix}}
|
||
|
||
# FIXME ruby’s mkmf needs patching to check CPATH
|
||
CFLAGS: -I{{deps.sourceware.org/libffi.prefix}}/include
|
||
script:
|
||
- gem build cocoapods.gemspec
|
||
- gem install cocoapods-{{version}}.gem
|
||
|
||
- run: |
|
||
mv {{prefix}}/bin/* .
|
||
cp $SRCROOT/props/proxy {{prefix}}/bin/pod
|
||
working-directory: ${{prefix}}/gems/bin
|
||
|
||
provides:
|
||
- bin/pod
|
||
|
||
test:
|
||
env:
|
||
# some of our test containers are raw and thus run as root
|
||
COCOAPODS_ALLOW_ROOT: 1
|
||
script: pod --version
|