summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/expect/PKGBUILD
blob: 0f2f46bcac6ca9677440ef9d1673c54670b5242f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: Kevin Piche <kevin@archlinux.org>

pkgname=expect
pkgver=5.44.1.4
pkgrel=2
pkgdesc="A tool for automating interactive applications"
arch=(i686 x86_64)
depends=('tcl>=8.5.0' 'tk>=8.5.0')
makedepends=('tk>=8.5.0')
tcltkver=8.5.0
source=(ftp://ftp.archlinux.org/other/expect/expect-$pkgver.tar.bz2
#http://expect.nist.gov/src/expect-$pkgver.tar.bz2
http://heanet.dl.sourceforge.net/sourceforge/tcl/tk$tcltkver-src.tar.gz
http://heanet.dl.sourceforge.net/sourceforge/tcl/tcl$tcltkver-src.tar.gz)
url="http://expect.nist.gov/"

build() {
  cd $startdir/src/expect-5.44.1.4
  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
      --with-tcl=/usr/lib --with-tk=/usr/lib --without-x \
      --with-tclinclude=$startdir/src/tcl$tcltkver/generic \
      --with-tkinclude=$startdir/src/tk$tcltkver/generic
  # Keep $startdir/pkg out of library search paths.
  sed -e 's/-rpath,${LIB_RUNTIME_DIR}:/-rpath,/' -i Makefile
  make || return 1
  make prefix=$startdir/pkg/usr exec_prefix=$startdir/pkg/usr sysconfdir=$startdir/pkg/etc \
      localstatedir=$startdir/pkg/var install
  # Remove X related stuff.
  rm -f $startdir/pkg/usr/bin/{multixterm,tknewsbiff,tkpasswd,xpstat}
  rm -f $startdir/pkg/usr/man/man1/{multixterm.1,tknewsbiff.1}
}
md5sums=('bbfd5ef50f3c1df4fe79e5a20a947d41'
         'bc217c45ed6b2f5b8d3120df63fa13bd'
         'd890c505465411b25050b6cd95971d2c')