95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
19 lines
669 B
Ruby
19 lines
669 B
Ruby
class Libtecla < Formula
|
|
desc "Command-line editing facilities similar to the tcsh shell"
|
|
homepage "http://www.astro.caltech.edu/~mcs/tecla/index.html"
|
|
url "http://www.astro.caltech.edu/~mcs/tecla/libtecla-1.6.3.tar.gz"
|
|
sha256 "f2757cc55040859fcf8f59a0b7b26e0184a22bece44ed9568a4534a478c1ee1a"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "d4148dea590822dbd6b801decdaa4ba9cd88cf02" => :yosemite
|
|
sha1 "7158c356aa224f096a93cafdc8f01fa238471b9b" => :mavericks
|
|
sha1 "515484afb0f5e3eea75a775361ce9b8059cb5a54" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
ENV.j1
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make", "install"
|
|
end
|
|
end
|