diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libpcl.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libpcl.rb b/Library/Formula/libpcl.rb new file mode 100644 index 000000000..96fc6b0a6 --- /dev/null +++ b/Library/Formula/libpcl.rb @@ -0,0 +1,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 |
