Skip to content

Instantly share code, notes, and snippets.

@shanesveller
Created April 11, 2014 21:47
Show Gist options
  • Select an option

  • Save shanesveller/10504216 to your computer and use it in GitHub Desktop.

Select an option

Save shanesveller/10504216 to your computer and use it in GitHub Desktop.
require 'formula'
class Serf < Formula
homepage 'http://www.serfdom.io'
version '0.5.0'
depends_on :arch => :intel
if Hardware.is_64_bit?
url 'https://dl.bintray.com/mitchellh/serf/0.5.0_darwin_amd64.zip'
sha256 'af445fbb4423da533ccee4c7c9bb4e0438339dbe65b3226d93af88065ecda0d0'
else
url 'https://dl.bintray.com/mitchellh/serf/0.5.0_darwin_386.zip'
sha256 '8623a286f98aea664dd8263c94d6620d89955d505d4c6579b7f3e21bd7d4f3d0'
end
def install
bin.install 'serf'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment