* ncurses: don't do make check because it doesn't have one.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13804
This commit is contained in:
parent
d8f6e06ae4
commit
f7ad184041
@ -8,29 +8,27 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1x4q6kma6zgg438llbgiac3kik7j2lln9v97jdffv3fyqyjxx6qa";
|
sha256 = "1x4q6kma6zgg438llbgiac3kik7j2lln9v97jdffv3fyqyjxx6qa";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags =
|
configureFlags = ''
|
||||||
"--with-shared --includedir=\${out}/include" +
|
--with-shared --includedir=''${out}/include --without-debug
|
||||||
(if unicode then " --enable-widec " else " ") +
|
${if unicode then "--enable-widec" else ""}
|
||||||
" --without-debug";
|
'';
|
||||||
|
|
||||||
preBuild = ''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
preBuild = ''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
||||||
|
|
||||||
doCheck = true;
|
|
||||||
|
|
||||||
# When building a wide-character (Unicode) build, create backward
|
# When building a wide-character (Unicode) build, create backward
|
||||||
# compatibility links from the the "normal" libraries to the
|
# compatibility links from the the "normal" libraries to the
|
||||||
# wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
# wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
||||||
postInstall = if unicode then "
|
postInstall = if unicode then ''
|
||||||
chmod -v 644 $out/lib/libncurses++w.a
|
chmod -v 644 $out/lib/libncurses++w.a
|
||||||
for lib in curses ncurses form panel menu; do
|
for lib in curses ncurses form panel menu; do
|
||||||
if test -e $out/lib/lib\${lib}w.a; then
|
if test -e $out/lib/lib''${lib}w.a; then
|
||||||
rm -vf $out/lib/lib\${lib}.so
|
rm -vf $out/lib/lib$lib.so
|
||||||
echo \"INPUT(-l\${lib}w)\" > $out/lib/lib\${lib}.so
|
echo "INPUT(-l''${lib}w)" > $out/lib/lib$lib.so
|
||||||
ln -svf lib\${lib}w.a $out/lib/lib\${lib}.a
|
ln -svf lib''${lib}w.a $out/lib/lib$lib.a
|
||||||
ln -svf lib\${lib}w.so.5 $out/lib/lib\${lib}.so.5
|
ln -svf lib''${lib}w.so.5 $out/lib/lib$lib.so.5
|
||||||
fi
|
fi
|
||||||
done;
|
done;
|
||||||
" else "";
|
'' else "";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GNU Ncurses, a free software emulation of curses in SVR4 and more";
|
description = "GNU Ncurses, a free software emulation of curses in SVR4 and more";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user