Last active
December 11, 2015 12:59
-
-
Save subak/4604644 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Textmate < Formula | |
homepage 'http://macromates.com/' | |
head 'https://github.com/textmate/textmate.git' | |
url 'https://github.com/textmate/textmate', :using => :git | |
version '9268' | |
depends_on 'ninja' | |
depends_on 'proctools' | |
depends_on 'ragel' | |
depends_on 'boost' | |
depends_on 'multimarkdown' | |
def install | |
ENV["PATH"] = "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:#{ENV['PATH']}" | |
ENV['builddir'] = '/usr/local/Cellar/textmate' | |
system "./configure && ninja" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment