diff options
| author | Juan Wajnerman | 2013-11-09 16:36:18 -0300 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-14 08:20:02 +0000 |
| commit | bf640a3c90acffd2282eb72fb4981dcd15259113 (patch) | |
| tree | 54936b529acc196f647d27c1c35de1ab8b232ef6 /Library/Formula/libpcl.rb | |
| parent | ae82e140d9ecb10c8c03005ed0865139a64e0f9a (diff) | |
| download | homebrew-bf640a3c90acffd2282eb72fb4981dcd15259113.tar.bz2 | |
libpcl 1.12 (new formula)
Closes #24131.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/libpcl.rb')
| -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 |
