mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
33 lines
730 B
YAML
33 lines
730 B
YAML
|
distributable:
|
||
|
url: "https://github.com/mxcl/swift-sh/archive/{{version}}.tar.gz"
|
||
|
# this obscure option dictates how many components are removed from the
|
||
|
# extracted tarball.
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: mxcl/swift-sh # reads github release tags
|
||
|
|
||
|
platforms:
|
||
|
- darwin
|
||
|
# - linux/x86-64
|
||
|
|
||
|
dependencies:
|
||
|
# swift.org: 5
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
# swift.org: 5
|
||
|
# apple.com/xcode: >=11
|
||
|
script:
|
||
|
- swift build --disable-sandbox -c release
|
||
|
- mkdir -p {{prefix}}/bin
|
||
|
- mv $(swift build --configuration release --show-bin-path)/swift-sh {{prefix}}/bin
|
||
|
|
||
|
provides:
|
||
|
- bin/swift-sh
|
||
|
|
||
|
test:
|
||
|
- echo "#!/usr/bin/env swift sh" > test.swift
|
||
|
- swift-sh eject test.swift
|
||
|
- test -e Test/Package.swift
|