2018-11-27 05:24:56 +00:00
|
|
|
class Bluetoothconnector < Formula
|
|
|
|
desc "Connect and disconnect Bluetooth devices"
|
|
|
|
homepage "https://github.com/lapfelix/BluetoothConnector"
|
2019-01-27 22:20:44 +00:00
|
|
|
url "https://github.com/lapfelix/BluetoothConnector/archive/1.2.0.tar.gz"
|
|
|
|
sha256 "63cf474670041127effbeec8b84f9b84421f7cae74fb2908d6c10c2b331cb4be"
|
2018-11-27 05:24:56 +00:00
|
|
|
|
2019-01-23 04:30:35 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "1c3b876a95fe14f0716239d9eadf882b40ce9d0df71080502581800231904340" => :mojave
|
|
|
|
sha256 "282773ff899326dc1c0dfc1fa7941da80c46d314ae1b0930a68d7e3e5758a73b" => :high_sierra
|
|
|
|
end
|
|
|
|
|
2018-11-27 05:24:56 +00:00
|
|
|
depends_on :xcode => ["10.0", :build]
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "swift", "build", "--disable-sandbox", "-c", "release", "-Xswiftc", "-static-stdlib"
|
|
|
|
bin.install ".build/release/BluetoothConnector"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
output = shell_output("#{bin}/BluetoothConnector")
|
|
|
|
assert_match "Usage: BluetoothConnector", output
|
|
|
|
assert_match "Get the MAC address from the list below", output
|
|
|
|
|
|
|
|
output_fail = shell_output("#{bin}/BluetoothConnector --connect 00-00-00-00-00-00", 252)
|
|
|
|
assert_equal "Not paired to device\n", output_fail
|
|
|
|
end
|
|
|
|
end
|