itex2MML 1.4.9
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
b23de84ba1
commit
28ed845442
1 changed files with 25 additions and 0 deletions
25
Formula/itex2mml.rb
Normal file
25
Formula/itex2mml.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
require 'formula'
|
||||
|
||||
# From: Jacques Distler <distler@golem.ph.utexas.edu>
|
||||
# You can always find the latest version by checking
|
||||
# http://golem.ph.utexas.edu/~distler/code/itexToMML/view/head:/itex-src/itex2MML.h
|
||||
# The corresponding versioned archive is
|
||||
# http://golem.ph.utexas.edu/~distler/blog/files/itexToMML-x.x.x.tar.gz
|
||||
|
||||
class Itex2mml < Formula
|
||||
homepage 'http://golem.ph.utexas.edu/~distler/blog/itex2MML.html'
|
||||
url 'http://golem.ph.utexas.edu/~distler/blog/files/itexToMML-1.4.9.tar.gz'
|
||||
sha1 '523db5a0db77f175a820aeb0387ded61f4532f9f'
|
||||
|
||||
def install
|
||||
bin.mkpath
|
||||
cd "itex-src" do
|
||||
system "make"
|
||||
system "make", "install", "prefix=#{prefix}", "BINDIR=#{bin}"
|
||||
end
|
||||
end
|
||||
|
||||
def test
|
||||
system "#{bin}/itex2MML --version"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue