diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libcsv.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/libcsv.rb b/Library/Formula/libcsv.rb new file mode 100644 index 000000000..40d11ab83 --- /dev/null +++ b/Library/Formula/libcsv.rb @@ -0,0 +1,20 @@ +require 'formula' + +class Libcsv < Formula + url 'http://downloads.sourceforge.net/project/libcsv/libcsv/libcsv-3.0.1/libcsv-3.0.1.tar.gz' + homepage 'http://sourceforge.net/projects/libcsv/' + md5 '926b55d732b775a49ed2539c4db5c102' + + def install + inreplace 'Makefile' do |s| + s.change_make_var! "INCDIR", include + s.change_make_var! "MANDIR", man + s.change_make_var! "LIBDIR", lib + end + man.mkpath + lib.mkpath + include.mkpath + system "make" + system "make install" + end +end |
