Skip to content

Instantly share code, notes, and snippets.

@subak
Last active December 11, 2015 12:59
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 subak/4604644 to your computer and use it in GitHub Desktop.
Save subak/4604644 to your computer and use it in GitHub Desktop.
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