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

class Xaric < Formula
  url 'http://xaric.org/software/xaric/releases/xaric-0.13.6.tar.gz'
  homepage 'http://xaric.org/'
  md5 '3523edcd8c8d5234b87c56c86c2dfdfc'

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