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

class Bcpp < Formula
  url 'ftp://invisible-island.net/bcpp/bcpp-20090630.tgz'
  homepage 'http://invisible-island.net/bcpp/'
  sha1 'f8ce9736fa2775e8c15b7fcbfee156103d90ece8'

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