aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libpcl.rb
diff options
context:
space:
mode:
authorJuan Wajnerman2013-11-09 16:36:18 -0300
committerMike McQuaid2014-01-14 08:20:02 +0000
commitbf640a3c90acffd2282eb72fb4981dcd15259113 (patch)
tree54936b529acc196f647d27c1c35de1ab8b232ef6 /Library/Formula/libpcl.rb
parentae82e140d9ecb10c8c03005ed0865139a64e0f9a (diff)
downloadhomebrew-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.rb13
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