require "formula" class Csfml < Formula homepage "http://www.sfml-dev.org/" url "http://www.sfml-dev.org/download/csfml/CSFML-2.2-sources.zip" sha1 "1dc3d2dadef6e6daa05b0dd868367ad5f02419e4" revision 1 bottle do cellar :any sha256 "81a7f3da157b8941df5ba58152846b62aefcfcb434bd3e2a259db63964d5765e" => :yosemite sha256 "48ffc9d13eec898937ad7cde0562f85694d6b7bf25a02f67efc50565788f179d" => :mavericks sha256 "65457acf802959c36830d5d812d1f3e63739e366249196d4bafe526e2bc254ea" => :mountain_lion end depends_on "cmake" => :build depends_on "sfml" def install system "cmake", ".", "-DCMAKE_MODULE_PATH=#{Formula["sfml"].share}/SFML/cmake/Modules/", *std_cmake_args system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include int main (void) { sfWindow * w = sfWindow_create (sfVideoMode_getDesktopMode (), "Test", 0, NULL); return 0; } EOS system ENV.cc, "test.c", "-lcsfml-window", "-o", "test" system "./test" end end