homebrew-core/Formula/lha.rb
Tianyi Cui 9acffbdb57 lha: update the url, it looks better now.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-05 08:37:18 -07:00

14 lines
418 B
Ruby

require 'formula'
class Lha <Formula
url 'http://dl.sourceforge.jp/lha/22231/lha-1.14i-ac20050924p1.tar.gz'
homepage 'http://lha.sourceforge.jp/'
md5 '9f52430410928ba4390a73a41a36d56f'
version '1.14i-ac20050924p1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end