blob: 2bf24ab18fbfed73cee0fae68df87d2d0d2e0067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Bcpp < Formula
homepage 'http://invisible-island.net/bcpp/'
url 'ftp://invisible-island.net/bcpp/bcpp-20090630.tgz'
sha1 'f8ce9736fa2775e8c15b7fcbfee156103d90ece8'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end
|