mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 16:35:07 +03:00
parent
b408ec5cdc
commit
7cb8de8d2b
1 changed files with 18 additions and 6 deletions
|
@ -1,8 +1,3 @@
|
||||||
distributable:
|
|
||||||
# vendoring for newer versions
|
|
||||||
# url: https://github.com/cirruslabs/tart/archive/refs/tags/{{version}}.tar.gz
|
|
||||||
url: https://github.com/cirruslabs/tart/releases/download/{{version}}/tart.tar.gz
|
|
||||||
|
|
||||||
warnings:
|
warnings:
|
||||||
- vendored
|
- vendored
|
||||||
|
|
||||||
|
@ -10,7 +5,7 @@ versions:
|
||||||
github: cirruslabs/tart/releases
|
github: cirruslabs/tart/releases
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
- darwin/aarch64
|
- darwin
|
||||||
|
|
||||||
#FIXME proper system for re-using pre-built binaries
|
#FIXME proper system for re-using pre-built binaries
|
||||||
# we must require the vendor to provide signatures against a published public
|
# we must require the vendor to provide signatures against a published public
|
||||||
|
@ -22,10 +17,27 @@ platforms:
|
||||||
# This only works on macOS, arm64, monterey and above. It requires xcode 14.1 to build
|
# This only works on macOS, arm64, monterey and above. It requires xcode 14.1 to build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
dependencies:
|
||||||
|
curl.se: '*'
|
||||||
script:
|
script:
|
||||||
- mkdir -p "{{prefix}}/bin"
|
- mkdir -p "{{prefix}}/bin"
|
||||||
|
- run: curl -LSs https://github.com/cirruslabs/tart/releases/download/{{version.tag}}/tart-$ARCH.tar.gz | tar -xzf -
|
||||||
|
if: '>=2.5'
|
||||||
|
- run: |
|
||||||
|
if test "{{hw.arch}}" = "aarch64"; then
|
||||||
|
curl -LSs https://github.com/cirruslabs/tart/releases/download/{{version.tag}}/tart.tar.gz | tar -xzf -
|
||||||
|
else
|
||||||
|
# not available on x86-64
|
||||||
|
false
|
||||||
|
fi
|
||||||
|
if: <2.5
|
||||||
- cp -a tart.app "{{prefix}}"
|
- cp -a tart.app "{{prefix}}"
|
||||||
- cp props/tart-shim "{{prefix}}"/bin/tart
|
- cp props/tart-shim "{{prefix}}"/bin/tart
|
||||||
|
env:
|
||||||
|
aarch64:
|
||||||
|
ARCH: arm64
|
||||||
|
x86-64:
|
||||||
|
ARCH: amd64
|
||||||
|
|
||||||
provides:
|
provides:
|
||||||
- bin/tart
|
- bin/tart
|
||||||
|
|
Loading…
Reference in a new issue