diff options
| author | Julien Ammous | 2013-05-31 14:44:42 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-31 10:49:00 -0700 |
| commit | c6a6bac0fc8ab43cd8ec06e3861c58a6feb5c3fc (patch) | |
| tree | f033f32c1a5bb9cdb659e10d520d10d14864f47d /Library/Formula/libgetdata.rb | |
| parent | 2526e486ceed05490ded02c5afcd7a6d90fcd0c3 (diff) | |
| download | homebrew-c6a6bac0fc8ab43cd8ec06e3861c58a6feb5c3fc.tar.bz2 | |
libgetdata: do not build perl extension by default
Closes #20176.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libgetdata.rb')
| -rw-r--r-- | Library/Formula/libgetdata.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/libgetdata.rb b/Library/Formula/libgetdata.rb index 7ca590543..477d7de02 100644 --- a/Library/Formula/libgetdata.rb +++ b/Library/Formula/libgetdata.rb @@ -6,6 +6,7 @@ class Libgetdata < Formula sha1 'fe50cc6a0a0be719a6ce06acc3beea19fcda13ce' option 'with-fortran', 'Build Fortran 77 bindings' + option 'with-perl', 'Build Perl binding' option 'lzma', 'Build with LZMA compression support' option 'zzip', 'Build with zzip compression support' @@ -18,6 +19,9 @@ class Libgetdata < Formula --disable-dependency-tracking --prefix=#{prefix} ] + + args << "--disable-perl" unless build.include?('with-perl') + system "./configure", *args system "make" system "make", "install" |
