Browse Source

radare2: Fix opening browser (closes #1089)

android-5
Fredrik Fornwall 7 years ago
parent
commit
d5d2237e88
  1. 1
      packages/radare2/build.sh
  2. 22
      packages/radare2/libr-core-cconfig.c.patch

1
packages/radare2/build.sh

@ -1,6 +1,7 @@
TERMUX_PKG_HOMEPAGE=https://rada.re
TERMUX_PKG_DESCRIPTION="Advanced Hexadecimal Editor"
TERMUX_PKG_VERSION=1.5.0
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/radare/radare2/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=c6b465cb2f36a206d5e9380c0bcbb4c05ed5cb7995e554703206e0bbdc9c74a1
TERMUX_PKG_FOLDERNAME="radare2-$TERMUX_PKG_VERSION"

22
packages/radare2/libr-core-cconfig.c.patch

@ -1,6 +1,6 @@
diff -u -r ../radare2-1.5.0/libr/core/cconfig.c ./libr/core/cconfig.c
--- ../radare2-1.5.0/libr/core/cconfig.c 2017-05-30 18:46:34.000000000 +0200
+++ ./libr/core/cconfig.c 2017-05-30 19:39:39.339205400 +0200
--- ../radare2-1.5.0/libr/core/cconfig.c 2017-05-30 17:39:22.000000000 +0000
+++ ./libr/core/cconfig.c 2017-06-14 22:12:21.397368964 +0000
@@ -2145,9 +2145,7 @@
#endif
SETCB ("dir.source", "", &cb_dirsrc, "Path to find source files");
@ -12,7 +12,23 @@ diff -u -r ../radare2-1.5.0/libr/core/cconfig.c ./libr/core/cconfig.c
SETPREF ("dir.projects", "~\\"R2_HOMEDIR"\\projects", "Default path for projects");
#else
SETPREF ("dir.projects", "~/"R2_HOMEDIR"/projects", "Default path for projects");
@@ -2300,9 +2298,7 @@
@@ -2283,6 +2281,9 @@
#if __WINDOWS__
r_config_set (cfg, "http.browser", "start");
#else
+#ifdef __ANDROID__
+ r_config_set (cfg, "http.browser", "xdg-open");
+#else
if (r_file_exists ("/usr/bin/openURL")) { // iOS ericautils
r_config_set (cfg, "http.browser", "/usr/bin/openURL");
} else if (r_file_exists ("/system/bin/toolbox")) {
@@ -2295,14 +2296,13 @@
} else {
r_config_set (cfg, "http.browser", "firefox");
}
+#endif
r_config_desc (cfg, "http.browser", "Command to open HTTP URLs");
#endif
SETI ("http.maxsize", 0, "Maximum file size for upload");
SETPREF ("http.bind", "localhost", "Server address");
SETPREF ("http.homeroot", "~/.config/radare2/www", "http home root directory");

Loading…
Cancel
Save