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

class Nesc < Formula
  homepage 'http://nescc.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/nescc/nescc/v1.3.4/nesc-1.3.4.tar.gz'
  sha1 '360148ca99a88b628bcd4490ad42a9466490bf4e'

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