class Libconfig < Formula desc "Configuration file processing library" homepage "http://www.hyperrealm.com/libconfig/" url "https://github.com/hyperrealm/libconfig/archive/v1.6.tar.gz" sha256 "18739792eb463d73525d7aea9b0a48b14106fae1cfec09aedc668d8c1079adf1" bottle do cellar :any sha256 "b761558d36680478ea69e888a35bb64df066a561f9534e9b893b26e07a4062e4" => :el_capitan sha256 "da3783f62333e9f65b235c7359de96264476e7bb7a0e472f7f81d288cbd059ec" => :yosemite sha256 "dfb06c8602d8cb3a81a0d63127fc45c112bbdd494772f5ce50715f06383d596d" => :mavericks end head do url "https://github.com/hyperrealm/libconfig.git" depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build end option :universal def install ENV.universal_binary if build.universal? system "autoreconf", "-i" if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" # Fixes "scanner.l:137:59: error: too few arguments to function call ..." # Forces regeneration of the BUILT_SOURCES "scanner.c" and "scanner.h" # Reported 6 Jun 2016: https://github.com/hyperrealm/libconfig/issues/66 touch "lib/scanner.l" system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include int main() { config_t cfg; config_init(&cfg); config_destroy(&cfg); return 0; } EOS system ENV.cc, "-I#{include}", "-L#{lib}", "-lconfig", testpath/"test.c", "-o", testpath/"test" system "./test" end end