From subsecret
Jump to: navigation, search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 8: Line 8:


==ncurses==
==ncurses==
  tar xf ncurses-5.8.tar.gz
  tar xf ncurses-5.9.tar.gz
  cd ncurses-5.8
  cd ncurses-5.9
  ./configure --prefix=/tools --with-shared --with-normal --with-termlib --with-ticlib --enable-widec
  ./configure --prefix=/tools --with-shared --with-normal --with-termlib --with-ticlib --enable-widec
  make -j 12
  make -j 8
  make install
  make install
  cd ..
  cd ..


==nano==
==nano==
  tar xf nano-2.2.6.tar.gz  
  tar xf nano-2.3.2.tar.gz
  cd nano-2.2.6
  cd nano-2.3.2
  ./configure --prefix=/tools
  ./configure --prefix=/tools
  make -j 12
  make -j 8
make install
cd ..
 
==diffutils==
tar xf diffutils-3.3.tar.xz
cd diffutils-3.3
./configure --prefix /tools
make -j 8
  make install
  make install
  cd ..
  cd ..


We are now ready for next step
We are now ready for next step

Latest revision as of 14:47, 9 May 2013

patch

tar xf patch-2.7.1.tar.xz
cd patch-2.7.1
./configure --prefix=/tools
make -j 8
make install
cd ..

ncurses

tar xf ncurses-5.9.tar.gz
cd ncurses-5.9
./configure --prefix=/tools --with-shared --with-normal --with-termlib --with-ticlib --enable-widec
make -j 8
make install
cd ..

nano

tar xf nano-2.3.2.tar.gz
cd nano-2.3.2
./configure --prefix=/tools
make -j 8
make install
cd ..

diffutils

tar xf diffutils-3.3.tar.xz
cd diffutils-3.3
./configure --prefix /tools
make -j 8
make install
cd ..

We are now ready for next step