homebrew-core/Formula/csfml.rb

38 lines
1 KiB
Ruby
Raw Normal View History

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"
2015-05-12 04:46:15 +00:00
revision 1
bottle do
cellar :any
2015-05-12 09:11:38 +00:00
sha256 "81a7f3da157b8941df5ba58152846b62aefcfcb434bd3e2a259db63964d5765e" => :yosemite
sha256 "48ffc9d13eec898937ad7cde0562f85694d6b7bf25a02f67efc50565788f179d" => :mavericks
sha256 "65457acf802959c36830d5d812d1f3e63739e366249196d4bafe526e2bc254ea" => :mountain_lion
2015-05-12 04:46:15 +00:00
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
2014-08-30 07:16:04 +00:00
(testpath/"test.c").write <<-EOS.undent
#include <SFML/Window.h>
int main (void)
{
sfWindow * w = sfWindow_create (sfVideoMode_getDesktopMode (), "Test", 0, NULL);
return 0;
}
EOS
2014-08-30 07:16:04 +00:00
system ENV.cc, "test.c", "-lcsfml-window", "-o", "test"
system "./test"
end
end