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

class Uncrustify < Formula
  homepage 'http://uncrustify.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/uncrustify/uncrustify/uncrustify-0.60/uncrustify-0.60.tar.gz'
  sha1 '769a7649a1cefb80beff9b67b11b4b87a8cc8e0e'

  head 'https://github.com/bengardner/uncrustify.git'

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