Created
August 17, 2013 03:04
-
-
Save Echos/6255045 to your computer and use it in GitHub Desktop.
for freetype2.
ref http://blockdiag.com/ja/blockdiag/introduction.html#id2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Freetype2 <Formula | |
url 'http://sourceforge.net/projects/freetype/files/freetype2/2.4.4/freetype-2.4.4.tar.gz/download' | |
homepage 'http://freetype.sourceforge.net/index2.html' | |
md5 '9273efacffb683483e58a9e113efae9f' | |
version '2.4.4' | |
# depends_on 'cmake' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" | |
# system "cmake . #{std_cmake_parameters}" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment