Skip to content

Instantly share code, notes, and snippets.

@bosmacs
Created September 16, 2011 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bosmacs/1223228 to your computer and use it in GitHub Desktop.
Save bosmacs/1223228 to your computer and use it in GitHub Desktop.
OpenCTM Brewfile
require 'formula'
class Openctm < Formula
url 'http://downloads.sourceforge.net/project/openctm/OpenCTM-1.0.3/OpenCTM-1.0.3-src.tar.bz2'
homepage 'http://openctm.sourceforge.net/'
md5 '55948e7c2ad8c5807cd1b9b48718075b'
def install
inreplace ["Makefile.macosx"] do |s|
s.gsub! "/usr/local", prefix
end
include.mkdir
lib.mkdir
bin.mkdir
system "make -f Makefile.macosx"
system "make -f Makefile.macosx install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment