homebrew-core/Formula/udpxy.rb
2015-11-19 17:03:53 +01:00

63 lines
1.8 KiB
Ruby

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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/udpxy</string>
<string>-p</string>
<string>4022</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
</dict>
</plist>
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