From ce70e73a348d10e17624959ee8e58d1b9449733a Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Sun, 24 Mar 2019 21:43:38 -0700 Subject: [PATCH] remove Formula folder Homebrew stuff is at https://github.com/bsergean/homebrew-IXWebSocket --- Formula/homebrew_formula.rb | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Formula/homebrew_formula.rb diff --git a/Formula/homebrew_formula.rb b/Formula/homebrew_formula.rb deleted file mode 100644 index 7b552f33..00000000 --- a/Formula/homebrew_formula.rb +++ /dev/null @@ -1,20 +0,0 @@ -class Ixwebsocket < Formula - desc "WebSocket client and server, and HTTP client command-line tool" - homepage "https://github.com/machinezone/IXWebSocket" - url "https://github.com/machinezone/IXWebSocket/archive/v1.1.0.tar.gz" - sha256 "52592ce3d0a67ad0f90ac9e8a458f61724175d95a01a38d1bad3fcdc5c7b6666" - depends_on "cmake" => :build - - def install - system "cmake", ".", *std_cmake_args - system "make", "install" - end - - test do - system "#{bin}/ws", "--help" - system "#{bin}/ws", "send", "--help" - system "#{bin}/ws", "receive", "--help" - system "#{bin}/ws", "transfer", "--help" - system "#{bin}/ws", "curl", "--help" - end -end