aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Creager2010-06-11 00:03:27 -0400
committerAdam Vandenberg2010-06-11 07:46:13 -0700
commitc72fb19aa8d0f16f2f712604aed51a5a1b7cdaef (patch)
tree0dd017258d63879a06a5266717632123af112739
parentb5ea132a3e11c8782298e2af0440a404760953d8 (diff)
downloadhomebrew-c72fb19aa8d0f16f2f712604aed51a5a1b7cdaef.tar.bz2
Poco 1.3.6p2
The POCO C++ Libraries (POCO stands for POrtable COmponents) are open source C++ class libraries that simplify and accelerate the development of network-centric, portable applications in C++. The libraries integrate perfectly with the C++ Standard Library and fill many of the functional gaps left open by it. Their modular and efficient design and implementation makes the POCO C++ Libraries extremely well suited for embedded development, an area where the C++ programming language is becoming increasingly popular, due to its suitability for both low-level (device I/O, interrupt handlers, etc.) and high-level object-oriented development. Of course, the POCO C++ Libraries are also ready for enterprise-level challenges. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/poco.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/poco.rb b/Library/Formula/poco.rb
new file mode 100644
index 000000000..01e447190
--- /dev/null
+++ b/Library/Formula/poco.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Poco <Formula
+ url 'http://downloads.sourceforge.net/project/poco/sources/poco-1.3.6/poco-1.3.6p2-all.tar.bz2'
+ homepage 'http://pocoproject.org/'
+ md5 '8f1a6c3511764167d39f1950da3fcb37'
+ version '1.3.6p2'
+
+ def install
+ system "./configure",
+ "--disable-debug",
+ "--disable-dependency-tracking",
+ "--omit=Data/MySQL,Data/ODBC",
+ "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end