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

class Nickle < Formula
  url 'http://nickle.org/release/nickle-2.70.tar.gz'
  homepage 'http://www.nickle.org/'
  sha1 'b967e09816146e2f356c97b4fc5170a33bad2f29'

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