06af32b24c
Fixes Homebrew/homebrew#7274 Fixes Homebrew/homebrew#7275 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
24 lines
700 B
Ruby
24 lines
700 B
Ruby
require 'formula'
|
|
|
|
class Synergy < Formula
|
|
|
|
if ARGV.build_head?
|
|
url 'http://synergy.googlecode.com/files/synergy-1.4.3-MacOSX106-Universal.zip'
|
|
sha1 'aa60fa6ac975dd22dc095d6cd9f3dc755b91bb64'
|
|
version '1.4.3'
|
|
else
|
|
# Newer 1.3.x versions have a critical bug on OS X:
|
|
# http://code.google.com/p/synergy-plus/issues/detail?id=47
|
|
# Do not bump this to 1.3.7 or newer until that issue is resolved.
|
|
url 'http://synergy.googlecode.com/files/synergy-1.3.6p2-MacOSX-Universal.zip'
|
|
sha1 '5b9336fb553db17bd109e3f2bca517af18ed3863'
|
|
version '1.3.6p2'
|
|
end
|
|
|
|
homepage 'http://synergy-foss.org'
|
|
|
|
def install
|
|
bin.install 'synergyc'
|
|
bin.install 'synergys'
|
|
end
|
|
end
|