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

class Libpcl < Formula
  homepage 'http://xmailserver.org/libpcl.html'
  url 'http://xmailserver.org/pcl-1.12.tar.gz'
  sha1 'a206c8fb5a96e65005f414ac46aeccd4b3603c8d'

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