expect安装编译方法

来源:互联网 发布:淘宝进口税要买家交吗 编辑:程序博客网 时间:2024/05/18 02:22

expect介绍
http://en.wikipedia.org/wiki/Expect


需要软件
Tcl
ftp://mirror.ovh.net/gentoo-distfiles/distfiles/tcl8.5.8-src.tar.gz

 

Tk
ftp://mirror.ovh.net/gentoo-distfiles/distfiles/tk8.5.8-src.tar.gz

 

expect
http://expect.nist.gov/old/expect-5.43.0.tar.gz

 

Patch
http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-tcl_8.5.8_fix-1.patch


http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-spawn-2.patch

 


$cd soft
$tar xzvf tcl8.5.8-src.tar.gz
$tar xzvf tk8.5.8-src.tar.gz
$tar xzvf expect-5.43.0.tar.gz

 

$ln -s tcl8.5.8 tcl
$ln -s tk8.5.8 tk

 

$cd tcl/unix
$./configure -enable-64bit -enable-shared -prefix=/opt/gnu/expect
$make
$make install


$cd ../../tk/unix
$./configure -enable-64bit -enable-shared -prefix=/opt/gnu/expect
$make
$make install


$cd ../../ expect-5.43.0

patch -Np1 -i ../expect-5.43.0-tcl_8.5.8_fix-1.patch
patch -Np1 -i ../expect-5.43.0-spawn-2.patch

$./configure -enable-64bit -enable-shared -prefix=/opt/gnu/expect
$make
$make install

 

$ln -s /opt/gnu/expect /usr/bin/expect
$ln -s /opt/gnu/expectk /usr/bin/expectk

 

参考:
http://www.linuxfromscratch.org/blfs/view/svn/general/expect.html

 

 

 

 

原创粉丝点击