Skip to content

Instantly share code, notes, and snippets.

@proglottis
Last active August 29, 2015 14:09
Show Gist options
  • Save proglottis/c7e3a304408c7067ace7 to your computer and use it in GitHub Desktop.
Save proglottis/c7e3a304408c7067ace7 to your computer and use it in GitHub Desktop.
require "formula"
class KitchenSync < Formula
homepage "https://github.com/willbryant/kitchen_sync"
url "https://github.com/willbryant/kitchen_sync/archive/0.37.tar.gz"
sha1 "4d9756ddf65de679c0dc6e1d5a69ad9984b9c28d"
depends_on "cmake" => :build
depends_on "boost"
depends_on "yaml-cpp"
depends_on :mysql => :recommended
depends_on :postgresql => :recommended
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
system "#{bin}/ks"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment