aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRoberto Nibali2011-09-28 12:58:48 +0200
committerCharlie Sharpsteen2011-09-28 20:26:04 -0700
commit8062020bde89b2ee58bd32337736c9f66239f74d (patch)
tree4e0e31a10a572942662121d1947cbe6b2826b01c /Library
parent1ecb1311d5d5cd7abd0a821ffe276ed2c4f05602 (diff)
downloadhomebrew-8062020bde89b2ee58bd32337736c9f66239f74d.tar.bz2
New Formula: csvprintf
Closes #7865. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/csvprintf.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/csvprintf.rb b/Library/Formula/csvprintf.rb
new file mode 100644
index 000000000..1c1173d5d
--- /dev/null
+++ b/Library/Formula/csvprintf.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Csvprintf < Formula
+ url 'http://csvprintf.googlecode.com/files/csvprintf-1.0.tar.gz'
+ homepage 'http://code.google.com/p/csvprintf/'
+ md5 '6ad0315064c47a21b06da440d211e5c0'
+
+ def install
+ args = ["--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}"]
+
+ system "./configure", *args
+ system "make install"
+ end
+end