homebrew-core/Formula/texinfo.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

26 lines
1 KiB
Ruby

require 'formula'
class Texinfo <Formula
url 'http://ftp.gnu.org/gnu/texinfo/texinfo-4.13a.tar.gz'
homepage 'http://www.gnu.org/software/texinfo/'
md5 '71ba711519209b5fb583fed2b3d86fcb'
keg_only :provided_by_osx
def install
system "./configure", "--disable-dependency-tracking",
"--disable-install-warnings",
"--prefix=#{prefix}"
system "make install"
# The install warns about needing to install texinfo.tex and some other support files.
# The texinfo.tex in tex-live 2008 is identical to texinfo's version, so we can ignore this.
# However, it complains about installing epsf.tex in TEXMF/tex/generic/dvips, so let's do that...
# This somewhat breaks the homebrew philosophy, I am sorry.
# Also, we don't depend on tex-live, but this directory only exists if it is installed.
if File.exist? "#{HOMEBREW_PREFIX}/share/texmf-dist/" then
system "cp", "doc/epsf.tex", "#{HOMEBREW_PREFIX}/share/texmf-dist/tex/generic/dvips/"
end
end
end