19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
# Description: Tool for automating interactive applications
|
|
# URL: http://expect.nist.gov
|
|
# Maintainer:
|
|
# Packager:
|
|
# Depends on: tcl
|
|
|
|
name=expect
|
|
version=5.43.0
|
|
release=2
|
|
source=(http://$name.nist.gov/old/$name-$version.tar.gz expect-5.43.0-spawn-1.patch)
|
|
|
|
build () {
|
|
cd $name-5.43
|
|
patch -Np1 -i ../expect-5.43.0-spawn-1.patch
|
|
./configure --prefix=/usr --with-tcl=/usr/lib
|
|
make
|
|
make INSTALL_ROOT=$PKG install
|
|
}
|