aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtecla.rb
blob: 472a676aee7540bbb44e3b81180475baeda6f772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Libtecla < Formula
  url 'http://www.astro.caltech.edu/~mcs/tecla/libtecla-1.6.1.tar.gz'
  homepage 'http://www.astro.caltech.edu/~mcs/tecla/index.html'
  md5 '1892c8db9fecd38ed686b3ccf72a569b'

  def install
    ENV.j1
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end