Skip to content

Instantly share code, notes, and snippets.

@jonbro
Last active December 30, 2015 03:19
Show Gist options
  • Select an option

  • Save jonbro/7768867 to your computer and use it in GitHub Desktop.

Select an option

Save jonbro/7768867 to your computer and use it in GitHub Desktop.
require 'formula'
class Libgdiplus < Formula
homepage 'http://www.mono-project.com/Libgdiplus'
url 'https://github.com/mono/libgdiplus/archive/2.10.tar.gz'
md5 'bc601912ce8154baf5aa85de51e08b77'
depends_on 'gettext'
depends_on 'libtiff'
depends_on 'libexif'
depends_on 'glib'
def install
ENV.x11
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment