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

class Libredwg < Formula
  head 'git://git.sv.gnu.org/libredwg.git'
  homepage 'http://www.gnu.org/software/libredwg/'

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