aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lightning.rb
blob: 5dbf9a38733d130e9a6f1e20ac18404842e0e662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Lightning < Formula
  homepage 'http://www.gnu.org/software/lightning/'
  url 'http://ftpmirror.gnu.org/lightning/lightning-2.0.1.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/lightning/lightning-2.0.1.tar.gz'
  sha1 'cd4f655b314301e9f12a4832de124888b0e9e6da'

  def install
    system "./configure","--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end