aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Xia2014-11-10 14:11:02 -0500
committerMike McQuaid2014-11-14 15:11:32 +0000
commit4c15d49fa2977e25e962412d59d7e1b486570731 (patch)
tree4e6af3a17b740f802eba99f02eb3c634374e8c21 /Library/Formula
parent0db4b31c0348954d4c334ffab5076d03edebf2ba (diff)
downloadhomebrew-4c15d49fa2977e25e962412d59d7e1b486570731.tar.bz2
helios: move to Spotify's tap.
Helios will be provided by github.com/spotify/homebrew-public. Addresses https://github.com/Homebrew/homebrew/pull/34002 Closes #34071. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/helios.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/Library/Formula/helios.rb b/Library/Formula/helios.rb
deleted file mode 100644
index 9e2499bef..000000000
--- a/Library/Formula/helios.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require "formula"
-
-class Helios < Formula
- homepage "https://github.com/spotify/helios"
- url "https://oss.sonatype.org/service/local/repositories/releases/content/com/spotify/helios-tools/0.8.77/helios-tools-0.8.77-shaded.jar"
- sha1 "15684178cf0a7d07db425a50f7371749a122846e"
- version "0.8.77"
-
- depends_on :java => "1.7"
-
- def install
- libexec.install "helios-tools-#{version}-shaded.jar"
- bin.write_jar_script libexec/"helios-tools-#{version}-shaded.jar", "helios"
- end
-
- test do
- system "#{bin}/helios", "--version"
- end
-end