Created
March 3, 2012 02:29
-
-
Save Echos/1963857 to your computer and use it in GitHub Desktop.
Revisions
-
Echos revised this gist
Mar 3, 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 @@ -9,8 +9,8 @@ class Pdftk < Formula # via : https://github.com/adamv/homebrew-alt/ def install cd "pdftk" do system "make -f Makefile.OSX-10.6 TOOLPATH=/usr/local/bin/ VERSUFF=-4.6" system "make -f Makefile.OSX-10.6 install TOOLPATH=/usr/local/bin/ VERSUFF=-4.6" end end end -
Echos revised this gist
Mar 3, 2012 . 1 changed file with 3 additions and 3 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 @@ -5,12 +5,12 @@ class Pdftk < Formula homepage 'http://www.pdflabs.com/' md5 '9eb50fffcd621a627d387750c60982b4' depends_on 'gcc' # with "--enable-java" option , required "Homebrew-alt" . # via : https://github.com/adamv/homebrew-alt/ def install cd "pdftk" do system "make -f Makefile.OSX-10.6" system "make -f Makefile.OSX-10.6 install" end end end -
Echos created this gist
Mar 3, 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,16 @@ require 'formula' class Pdftk < Formula url 'http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk-1.44-src.zip' homepage 'http://www.pdflabs.com/' md5 '9eb50fffcd621a627d387750c60982b4' depends_on 'gcc' # required "Homebrew-alt" # via : https://github.com/adamv/homebrew-alt/ def install cd "pdftk" do system "make -f pdftk/Makefile.OSX-10.6" system "make -f pdftk/Makefile.OSX-10.6 install" end end end