cf0303496a
Homebrew doesn't know what to do with .dmg files, and they should probably be installed manually anyway.
18 lines
465 B
Ruby
18 lines
465 B
Ruby
require 'formula'
|
|
|
|
class Synergy < Formula
|
|
homepage 'http://synergy-foss.org'
|
|
version '1.3.8'
|
|
|
|
if MacOS.lion?
|
|
url 'http://synergy.googlecode.com/files/synergy-1.3.8-MacOSX107-Universal.zip'
|
|
sha1 '6b9b0e75a468b9f9c80519894e4d2d589aca2d31'
|
|
else
|
|
url 'http://synergy.googlecode.com/files/synergy-1.3.8-MacOSX106-Universal.zip'
|
|
sha1 'cedf8dc0f5f1d95b967fabcd4ed9bfc0f72840e6'
|
|
end
|
|
|
|
def install
|
|
bin.install 'synergyc', 'synergys'
|
|
end
|
|
end
|