Browse Source
* mc: use $TERMUX_PREFIX for ac_cv_path_(UN)ZIP * mc: set path for perl, python and ruby * mc: use python2 for extfs helpers * ncurses: create symlinks under include/ncurses * mc: set --with-ncurses-includes * mc/ncurses: bump revision after updatesandroid-5
tomty89
7 years ago
committed by
Fredrik Fornwall
4 changed files with 45 additions and 10 deletions
@ -1,13 +1,17 @@ |
|||||
TERMUX_PKG_HOMEPAGE=https://www.midnight-commander.org/ |
TERMUX_PKG_HOMEPAGE=https://www.midnight-commander.org/ |
||||
TERMUX_PKG_DESCRIPTION="Midnight Commander - a powerful file manager" |
TERMUX_PKG_DESCRIPTION="Midnight Commander - a powerful file manager" |
||||
TERMUX_PKG_VERSION=4.8.20 |
TERMUX_PKG_VERSION=4.8.20 |
||||
TERMUX_PKG_REVISION=2 |
TERMUX_PKG_REVISION=3 |
||||
TERMUX_PKG_SHA256=017ee7f4f8ae420a04f4d6fcebaabe5b494661075c75442c76e9c8b1923d501c |
TERMUX_PKG_SHA256=017ee7f4f8ae420a04f4d6fcebaabe5b494661075c75442c76e9c8b1923d501c |
||||
TERMUX_PKG_SRCURL=http://ftp.midnight-commander.org/mc-${TERMUX_PKG_VERSION}.tar.xz |
TERMUX_PKG_SRCURL=http://ftp.midnight-commander.org/mc-${TERMUX_PKG_VERSION}.tar.xz |
||||
TERMUX_PKG_DEPENDS="libandroid-support, ncurses, glib" |
TERMUX_PKG_DEPENDS="libandroid-support, ncurses, glib" |
||||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" |
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" |
||||
ac_cv_path_UNZIP=$PREFIX/bin/unzip |
ac_cv_path_UNZIP=$TERMUX_PREFIX/bin/unzip |
||||
ac_cv_path_ZIP=$PREFIX/bin/zip |
ac_cv_path_ZIP=$TERMUX_PREFIX/bin/zip |
||||
|
ac_cv_path_PERL=$TERMUX_PREFIX/bin/perl |
||||
|
ac_cv_path_PYTHON=$TERMUX_PREFIX/bin/python |
||||
|
ac_cv_path_RUBY=$TERMUX_PREFIX/bin/ruby |
||||
|
--with-ncurses-includes=$TERMUX_PREFIX/include |
||||
--with-ncurses-libs=$TERMUX_PREFIX/lib |
--with-ncurses-libs=$TERMUX_PREFIX/lib |
||||
--with-screen=ncurses |
--with-screen=ncurses |
||||
" |
" |
||||
|
@ -0,0 +1,10 @@ |
|||||
|
diff --git a/src/man2hlp/man2hlp.in b/src/man2hlp/man2hlp.in
|
||||
|
index f095830..f7a97ea 100644
|
||||
|
--- a/src/man2hlp/man2hlp.in
|
||||
|
+++ b/src/man2hlp/man2hlp.in
|
||||
|
@@ -1,4 +1,4 @@
|
||||
|
-#! @PERL@ -w
|
||||
|
+#! /usr/bin/perl -w
|
||||
|
# |
||||
|
# Man page to help file converter |
||||
|
# Copyright (C) 1994, 1995, 1998, 2000, 2001, 2002, 2003, 2004, 2005, |
@ -0,0 +1,20 @@ |
|||||
|
diff --git a/src/vfs/extfs/helpers/s3+.in b/src/vfs/extfs/helpers/s3+.in
|
||||
|
index 2ab596a..65b709b 100644
|
||||
|
--- a/src/vfs/extfs/helpers/s3+.in
|
||||
|
+++ b/src/vfs/extfs/helpers/s3+.in
|
||||
|
@@ -1,4 +1,4 @@
|
||||
|
-#! @PYTHON@
|
||||
|
+#! @PYTHON@2
|
||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
# |
||||
|
diff --git a/src/vfs/extfs/helpers/uc1541.in b/src/vfs/extfs/helpers/uc1541.in
|
||||
|
index dd7b7c4..8da6bfb 100644
|
||||
|
--- a/src/vfs/extfs/helpers/uc1541.in
|
||||
|
+++ b/src/vfs/extfs/helpers/uc1541.in
|
||||
|
@@ -1,4 +1,4 @@
|
||||
|
-#! @PYTHON@
|
||||
|
+#! @PYTHON@2
|
||||
|
""" |
||||
|
UC1541 Virtual filesystem |
||||
|
|
Loading…
Reference in new issue