homebrew-core/Formula/libtecla.rb
2015-11-19 17:03:53 +01:00

19 lines
747 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
sha256 "836d6100343197540f079ea7f6b9e5641fd8efc4e331d3492f8be4cd41ced6e9" => :yosemite
sha256 "d7f9b95bbe7540504751d42589e8500a77d15dc3e6b2f7fe501ed872172f1129" => :mavericks
sha256 "a7caf2863506fcb0c8ded748375116957c0a12e45212dea9cce16b47adf00883" => :mountain_lion
end
def install
ENV.j1
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make", "install"
end
end