SFML 2.1
Closes Homebrew/homebrew#26091. Closes Homebrew/homebrew#22239. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
c24714d215
commit
182339a6c0
1 changed files with 18 additions and 0 deletions
18
Formula/sfml.rb
Normal file
18
Formula/sfml.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require "formula"
|
||||
|
||||
class Sfml < Formula
|
||||
homepage "http://www.sfml-dev.org/"
|
||||
url "http://www.sfml-dev.org/download/sfml/2.1/SFML-2.1-sources.zip"
|
||||
sha1 "c27bdffdc4bedb5f6a20db03ceca715d42aa5752"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "freetype"
|
||||
depends_on "glew"
|
||||
depends_on "jpeg"
|
||||
depends_on "libsndfile"
|
||||
|
||||
def install
|
||||
system "cmake", ".", "-DCMAKE_INSTALL_FRAMEWORK_PREFIX=#{prefix}/Frameworks/", *std_cmake_args
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue