diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/poco.rb | 18 |
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 |
