diff options
| author | Roberto Nibali | 2011-09-28 12:58:48 +0200 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-28 20:26:04 -0700 |
| commit | 8062020bde89b2ee58bd32337736c9f66239f74d (patch) | |
| tree | 4e0e31a10a572942662121d1947cbe6b2826b01c /Library | |
| parent | 1ecb1311d5d5cd7abd0a821ffe276ed2c4f05602 (diff) | |
| download | homebrew-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.rb | 16 |
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 |
