d7ea4023a3
Closes #47435. Signed-off-by: Rui Chen <chenrui333@gmail.com>
27 lines
613 B
Ruby
27 lines
613 B
Ruby
class Ckan < Formula
|
|
desc "The Comprehensive Kerbal Archive Network"
|
|
homepage "https://github.com/KSP-CKAN/CKAN/"
|
|
url "https://github.com/KSP-CKAN/CKAN/releases/download/v1.26.6/ckan.exe"
|
|
sha256 "78018b81fce4a8b09a9b0ce004154bf9f65353cdf66662386d9ed303d1569b00"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "mono"
|
|
|
|
def install
|
|
(libexec/"bin").install "ckan.exe"
|
|
(bin/"ckan").write <<~EOS
|
|
#!/bin/sh
|
|
exec mono "#{libexec}/bin/ckan.exe" "$@"
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
To use the CKAN GUI, install the ckan-app cask.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"ckan", "version"
|
|
end
|
|
end
|