homebrew-core/Formula/elinks.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Elinks < Formula
desc "Text mode web browser"
homepage "http://elinks.or.cz/"
url "http://elinks.or.cz/download/elinks-0.11.7.tar.bz2"
sha256 "456db6f704c591b1298b0cd80105f459ff8a1fc07a0ec1156a36c4da6f898979"
revision 2
2009-08-29 17:22:57 +00:00
bottle do
2014-08-25 10:54:13 +00:00
revision 1
2015-11-19 15:45:31 +00:00
sha256 "4a4ba514c46b18fa2925bb28cb83eebe085ad6795ed84bdd411a2bedae2ee4d0" => :mavericks
sha256 "06842f124db95b48c26f071419bd12f88a25c5b08ae519d22453971d5d4feea4" => :mountain_lion
sha256 "f54731731b2422afc2ecb1021f7e9d5b152479480fb93856aae8510091210ebb" => :lion
end
devel do
url "http://elinks.cz/download/elinks-0.12pre6.tar.bz2"
version "0.12pre6"
sha256 "383646375b8a325bef5a132c8300caab90eb0b842c5f8eff68febc00e29acada"
end
2013-09-20 15:15:52 +00:00
head do
url "http://elinks.cz/elinks.git"
2013-09-20 15:15:52 +00:00
2014-06-02 02:38:17 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2014-04-08 03:12:46 +00:00
depends_on "openssl"
2009-08-29 17:22:57 +00:00
def install
ENV.deparallelize
ENV.delete("LD")
2012-08-28 04:38:10 +00:00
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}", "--without-spidermonkey",
"--enable-256-colors"
system "make", "install"
2009-08-29 17:22:57 +00:00
end
test do
(testpath/"test.html").write <<-EOS.undent
<!DOCTYPE html>
<title>elinks test</title>
Hello world!
<ol><li>one</li><li>two</li></ol>
EOS
2014-05-04 19:12:41 +00:00
assert_match /^\s*Hello world!\n+ *1. one\n *2. two\s*$/,
shell_output("elinks test.html")
end
2009-08-29 17:22:57 +00:00
end