88 lines
2.6 KiB
Ruby
88 lines
2.6 KiB
Ruby
class Redex < Formula
|
|
desc "Bytecode optimizer for Android apps"
|
|
homepage "https://fbredex.com"
|
|
license "MIT"
|
|
revision 6
|
|
head "https://github.com/facebook/redex.git", branch: "master"
|
|
|
|
stable do
|
|
url "https://github.com/facebook/redex/archive/v2017.10.31.tar.gz"
|
|
sha256 "18a840e4db0fc51f79e17dfd749b2ffcce65a28e7ef9c2b3c255c5ad89f6fd6f"
|
|
|
|
# Fix compilation on High Sierra
|
|
# Fix boost issue (https://github.com/facebook/redex/pull/564)
|
|
# Remove for next release
|
|
patch :DATA
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any, big_sur: "84dd055e027a7944cb87c73427009c046d5b735e7e2c42ee11c0c52795a9adaa"
|
|
sha256 cellar: :any, catalina: "2e6e4910a6ac40f83252859c90a9fc69e09f9e4c9027772fbf245b926f4f72f7"
|
|
sha256 cellar: :any, mojave: "56d21fc922c0f90ef8fd07b5ec65240e971e9a73d92b9f8b3c19b5f74043cb96"
|
|
sha256 cellar: :any, high_sierra: "65a056c1422c091bde3a7ed24dd01ee5f8b6bad7b0ceac3cc360257145863eb0"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libevent" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "boost"
|
|
depends_on "jsoncpp"
|
|
depends_on "python@3.9"
|
|
|
|
resource "test_apk" do
|
|
url "https://raw.githubusercontent.com/facebook/redex/fa32d542d4074dbd485584413d69ea0c9c3cbc98/test/instr/redex-test.apk"
|
|
sha256 "7851cf2a15230ea6ff076639c2273bc4ca4c3d81917d2e13c05edcc4d537cc04"
|
|
end
|
|
|
|
def install
|
|
# https://github.com/facebook/redex/issues/457
|
|
inreplace "Makefile.am", "/usr/include/jsoncpp", Formula["jsoncpp"].opt_include
|
|
|
|
system "autoreconf", "-ivf"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
resource("test_apk").stage do
|
|
system "#{bin}/redex", "redex-test.apk", "-o", "redex-test-out.apk"
|
|
end
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/libresource/RedexResources.cpp b/libresource/RedexResources.cpp
|
|
index 525601ec..a359f49f 100644
|
|
--- a/libresource/RedexResources.cpp
|
|
+++ b/libresource/RedexResources.cpp
|
|
@@ -16,6 +16,7 @@
|
|
#include <map>
|
|
#include <boost/regex.hpp>
|
|
#include <sstream>
|
|
+#include <stack>
|
|
#include <string>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
diff --git a/libredex/Show.cpp b/libredex/Show.cpp
|
|
index b042070f..5e492e3f 100644
|
|
--- a/libredex/Show.cpp
|
|
+++ b/libredex/Show.cpp
|
|
@@ -9,7 +9,14 @@
|
|
|
|
#include "Show.h"
|
|
|
|
+#include <boost/version.hpp>
|
|
+// Quoted was accepted into public components as of 1.73. The `detail`
|
|
+// header was removed in 1.74.
|
|
+#if BOOST_VERSION < 107400
|
|
#include <boost/io/detail/quoted_manip.hpp>
|
|
+#else
|
|
+#include <boost/io/quoted.hpp>
|
|
+#endif
|
|
#include <sstream>
|
|
|
|
#include "ControlFlow.h"
|