blob: 31f0b909356dc905e3708e88d219b709074ffb66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Libtecla < Formula
  homepage 'http://www.astro.caltech.edu/~mcs/tecla/index.html'
  url 'http://www.astro.caltech.edu/~mcs/tecla/libtecla-1.6.2.tar.gz'
  sha1 '2eae391d29ee02d921e73c4acc78350c9b03d618'
  def install
    ENV.j1
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end
  |