homebrew-core/Formula/noweb.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Noweb < Formula
url 'ftp://www.eecs.harvard.edu/pub/nr/noweb.tgz'
version '2.11b'
homepage 'http://www.cs.tufts.edu/~nr/noweb/'
md5 '1df580723497b2f2efde07646abf764c'
depends_on 'icon'
def install
Dir.chdir "src" do
system "bash", "awkname", "awk"
system "make LIBSRC=icon ICONC=icont CFLAGS='-U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=1'"
kpse = `which kpsewhich`
if kpse == ''
ohai 'No TeX installation found. Installing TeX support files in the noweb Cellar.'
texmf = "#{prefix}"
else
ohai 'TeX installation found. Installing TeX support files there might fail if your user does not have permission'
texmf = "`kpsewhich -var-value=TEXMFLOCAL`"
end
bin.mkpath
lib.mkpath
man.mkpath
system "mkdir -p #{texmf}/tex/generic/noweb"
system "make", "install", "BIN=#{bin}",
"LIB=#{lib}",
"MAN=#{man}",
"TEXINPUTS=#{texmf}/tex/generic/noweb"
end
end
end