aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xml2.rb
blob: 215b894cc0f7e484775ad79ab5b4a10e552183e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Xml2 < Formula
  homepage 'http://ofb.net/~egnor/xml2/'
  url 'http://download.ofb.net/gale/xml2-0.5.tar.gz'
  sha1 'e954311383d053747ae0c224b12dfddb8a1c0e74'

  depends_on 'pkg-config' => :build

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

  test do
    system "echo '<test/>' | \"#{bin}/xml2\""
  end
end