aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChristopher Sexton2014-07-15 00:24:42 -0400
committerJack Nagel2014-07-15 00:20:00 -0500
commit5cb95a502c1f9db058e710f16588e2c11b8d4f71 (patch)
tree013a0db82b7c08d517fbb8dd11b19858bf32a5ee /Library
parentf150d85f3878c36e08eb97583ded6442449bb73a (diff)
downloadhomebrew-5cb95a502c1f9db058e710f16588e2c11b8d4f71.tar.bz2
Remove iBeacon Formula
To better comply with Apple's new and updated IP and Trademark rights we are removing the iBeacon command line client. For more information see the Radius Networks Blog: http://developer.radiusnetworks.com/2014/07/14/a-note-from-the-ceo.html Closes #30873. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ibeacon.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/Library/Formula/ibeacon.rb b/Library/Formula/ibeacon.rb
deleted file mode 100644
index ae6693295..000000000
--- a/Library/Formula/ibeacon.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-require "formula"
-
-class Ibeacon < Formula
- homepage "https://github.com/RadiusNetworks/ibeacon-cli"
- url "https://github.com/RadiusNetworks/ibeacon-cli/archive/v1.0.1.tar.gz"
- sha1 "2f2b635a1211950772c0ae5269b955c280b8fe73"
- head "https://github.com/RadiusNetworks/ibeacon-cli.git"
-
- bottle do
- cellar :any
- sha1 "5ef4660cbd0fdc96c7a9c0ad7a58f462a1a2a2d4" => :mavericks
- end
-
- depends_on :macos => :mavericks
- depends_on :xcode => :build
-
- def install
- xcodebuild "-configuration", "Release", "SYMROOT=build", "-verbose"
- prefix.install "build/Release/ibeacon"
- bin.write_exec_script "#{prefix}/ibeacon"
- end
-
- test do
- assert `#{bin}/ibeacon --version`.include?("Version")
- end
-end