class Udpxy < Formula desc "UDP-to-HTTP multicast traffic relay daemon" homepage "http://www.udpxy.com/" url "http://www.udpxy.com/download/1_23/udpxy.1.0.23-9-prod.tar.gz" sha256 "6ce33b1d14a1aeab4bd2566aca112e41943df4d002a7678d9a715108e6b714bd" version "1.0.23-9" bottle do sha256 "2ae930fd03be10be0767d1bc518b85459531cbfdf0697c21d86f0ca950bfe7fa" => :mavericks sha256 "7460132da991c62d86bfad0f93854c770bd499eab80cf80c427a346fa5789581" => :mountain_lion sha256 "fbe11b0ac2e5ea5bfe9783c477d34807fbab524872c7c9d8441d77074db32fdb" => :lion end # Fix gzip path in Makefile for uname Darwin, this is needed to fix the install task # http://sourceforge.net/p/udpxy/patches/4/ patch :DATA def install system "make" system "make", "install", "DESTDIR=#{prefix}", "PREFIX=''" end plist_options :manual => "udpxy -p 4022" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/udpxy -p 4022 RunAtLoad WorkingDirectory #{HOMEBREW_PREFIX} EOS end end __END__ --- a/Makefile 2014-07-31 18:40:40.000000000 +0200 +++ b/Makefile 2014-07-31 18:41:05.000000000 +0200 @@ -32,7 +32,9 @@ ALL_FLAGS = -W -Wall -Werror --pedantic $(CFLAGS) SYSTEM=$(shell uname 2>/dev/null) -ifeq ($(SYSTEM), FreeBSD) +ifeq ($(SYSTEM), Darwin) +GZIP := /usr/bin/gzip +else ifeq ($(SYSTEM), FreeBSD) MAKE := gmake GZIP := /usr/bin/gzip endif