diff options
| author | Dominyk Tiller | 2014-12-07 21:21:57 +0000 |
|---|---|---|
| committer | Jack Nagel | 2014-12-11 14:44:46 -0500 |
| commit | a1cc148b3ca4e734055820cf83286b51caca48bc (patch) | |
| tree | 6e4b2a12ba1c6e38d0b04390ed2284f9c72caa81 /Library/Formula/aria2.rb | |
| parent | a9bc265793708de849008041f32eb0326cfcd4e0 (diff) | |
| download | homebrew-a1cc148b3ca4e734055820cf83286b51caca48bc.tar.bz2 | |
zlib & sqlite3: pkgconfig support
native pkg-config support for zlib and sqlite to elimate the need
to pass flags to configure or make stages in formulae.
Closes #34765.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/aria2.rb')
| -rw-r--r-- | Library/Formula/aria2.rb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Library/Formula/aria2.rb b/Library/Formula/aria2.rb index 65a6e7fef..6890344fa 100644 --- a/Library/Formula/aria2.rb +++ b/Library/Formula/aria2.rb @@ -39,14 +39,8 @@ class Aria2 < Formula --without-libgcrypt ] - # system zlib and sqlite don't include .pc files - ENV["ZLIB_CFLAGS"] = "-I/usr/include" - ENV["ZLIB_LIBS"] = "-L/usr/lib -lz" - ENV["SQLITE3_CFLAGS"] = "-I/usr/include" - ENV["SQLITE3_LIBS"] = "-L/usr/lib -lsqlite3" - system "./configure", *args - system "make install" + system "make", "install" bash_completion.install "doc/bash_completion/aria2c" end |
