summaryrefslogtreecommitdiff
path: root/extra/expect
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-12-25 13:34:49 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-12-25 13:34:49 +0100
commit416f65d4b97ff26629ddfa1b40ea2041c3e75358 (patch)
tree61e28b785eb3aa9e55ea269e170277b3d3b6e1fa /extra/expect
parentb14277452871db749ef4faa7db7e69bfce39f1a7 (diff)
parent6fbdd2899f39266e458531dcffefb85b9ce8d1b9 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/libnewt/PKGBUILD community/luasec/PKGBUILD extra/expect/PKGBUILD extra/fribidi/PKGBUILD extra/goffice/PKGBUILD extra/pidgin/PKGBUILD extra/postgresql/PKGBUILD extra/python/PKGBUILD extra/ruby/PKGBUILD
Diffstat (limited to 'extra/expect')
-rw-r--r--extra/expect/PKGBUILD26
1 files changed, 5 insertions, 21 deletions
diff --git a/extra/expect/PKGBUILD b/extra/expect/PKGBUILD
index 31c0b819a..a9771cc16 100644
--- a/extra/expect/PKGBUILD
+++ b/extra/expect/PKGBUILD
@@ -1,32 +1,20 @@
-# $Id: PKGBUILD 151250 2012-02-25 10:00:44Z allan $
-# Maintainer: kevin <kevin@archlinux.org>
+# $Id: PKGBUILD 173839 2012-12-25 00:34:18Z foutrelis $
+# Maintainer: Allan McRae <allan@archlinux.org>
pkgname=expect
pkgver=5.45
-pkgrel=2.1
+pkgrel=3
pkgdesc="A tool for automating interactive applications"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.nist.gov/el/msid/expect.cfm"
license=('custom')
-depends=('tcl>=8.5.3')
-conflicts=('expectk')
-install=expect.install
-changelog=ChangeLog
+depends=('tcl')
source=(http://downloads.sourceforge.net/project/expect/Expect/${pkgver}/expect${pkgver}.tar.gz)
-# CVS checkout on gerolde.
-#source=(ftp://ftp.archlinux.org/other/expect/expect-${pkgver}.tar.bz2)
-# old nist source=(http://expect.nist.gov/src/expect-${pkgver}.tar.bz2)
md5sums=('44e1a4f4c877e9ddc5a542dfa7ecc92b')
build() {
cd ${srcdir}/expect${pkgver}
-
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --mandir=/usr/share/man --with-tcl=/usr/lib \
- --with-tclinclude=/usr/include
-
- # Keep $startdir/pkg out of library search paths.
- sed -e 's/-rpath,${LIB_RUNTIME_DIR}:/-rpath,/' -i Makefile
+ ./configure --prefix=/usr --mandir=/usr/share/man
make
}
@@ -34,9 +22,5 @@ package() {
cd ${srcdir}/expect${pkgver}
make DESTDIR=${pkgdir} install
- # license.
install -D -m644 README ${pkgdir}/usr/share/licenses/${pkgname}/README
-
- (cd ${pkgdir}/usr/lib;
- ln -s expect${pkgver}/libexpect${pkgver}.so libexpect.so)
}