vifm 0.7.5
Closes Homebrew/homebrew#20021. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
43843aaf1c
commit
d53170abc2
1 changed files with 2 additions and 43 deletions
|
@ -2,13 +2,8 @@ require 'formula'
|
|||
|
||||
class Vifm < Formula
|
||||
homepage 'http://vifm.sourceforge.net/index.html'
|
||||
url 'http://sourceforge.net/projects/vifm/files/vifm-0.7.3a.tar.bz2'
|
||||
sha1 '4056b5bdc496f81225ddc7ee796380beb72a43da'
|
||||
|
||||
# OS X provides "ncurses" not "ncursesw"
|
||||
def patches
|
||||
DATA
|
||||
end
|
||||
url 'http://sourceforge.net/projects/vifm/files/vifm-0.7.5.tar.bz2'
|
||||
sha1 '202b369b45d741e32a50084d902c4dcc33014915'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking",
|
||||
|
@ -16,39 +11,3 @@ class Vifm < Formula
|
|||
system "make install"
|
||||
end
|
||||
end
|
||||
|
||||
__END__
|
||||
diff --git a/configure b/configure
|
||||
index 16a10f5..0d77a28 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -13307,13 +13307,13 @@ if test "${with_curses+set}" = set; then :
|
||||
fi
|
||||
|
||||
|
||||
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncursesw" >&5
|
||||
-$as_echo_n "checking for initscr in -lncursesw... " >&6; }
|
||||
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncurses" >&5
|
||||
+$as_echo_n "checking for initscr in -lncurses... " >&6; }
|
||||
if ${ac_cv_lib_ncursesw_initscr+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
-LIBS="-lncursesw $LIBS"
|
||||
+LIBS="-lncurses $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
@@ -13344,9 +13344,9 @@ fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncursesw_initscr" >&5
|
||||
$as_echo "$ac_cv_lib_ncursesw_initscr" >&6; }
|
||||
if test "x$ac_cv_lib_ncursesw_initscr" = xyes; then :
|
||||
- LIBS="$LIBS -lncursesw"
|
||||
- if test x$vifm_cv_curses = x/usr -a -d /usr/include/ncursesw; then
|
||||
- CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
|
||||
+ LIBS="$LIBS -lncurses"
|
||||
+ if test x$vifm_cv_curses = x/usr -a -d /usr/include/ncurses; then
|
||||
+ CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"
|
||||
fi
|
||||
for ac_header in ncurses.h
|
||||
do :
|
||||
|
|
Loading…
Reference in a new issue