Created
March 8, 2012 06:30
-
-
Save reborg/1999186 to your computer and use it in GitHub Desktop.
Revisions
-
reborg revised this gist
Mar 8, 2012 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,7 @@ # Instructrions: # click on "raw" and copy the link to the .rb file # from your terminal type: brew install <copy-link> require 'formula' class Ctags < Formula -
reborg revised this gist
Mar 8, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ class Ctags < Formula url 'https://github.com/fishman/ctags.git' homepage 'http://ctags.sourceforge.net/' version '1.2' head 'https://github.com/fishman/ctags.git' # true for both 5.8 and head fails_with_llvm "Resulting executable generates erroneous tag files", :build => 2335 -
reborg renamed this gist
Mar 8, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
reborg created this gist
Mar 8, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ require 'formula' class Ctags < Formula url 'https://github.com/fishman/ctags.git' homepage 'http://ctags.sourceforge.net/' head 'https://ctags.svn.sourceforge.net/svnroot/ctags/trunk' # true for both 5.8 and head fails_with_llvm "Resulting executable generates erroneous tag files", :build => 2335 def install if ARGV.build_head? system "autoheader" system "autoconf" end system "./configure", "--prefix=#{prefix}", "--enable-macro-patterns", "--mandir=#{man}", "--with-readlib" system "make install" end end