wok annotate expect/receipt @ rev 15145

expect: filter wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 12:52:35 2013 +0000 (2013-08-15)
parents d1b57a67e58d
children fcdd50638150
rev   line source
toronado@11698 1 # SliTaz package receipt.
toronado@11698 2
toronado@11698 3 PACKAGE="expect"
toronado@11698 4 VERSION="5.45"
toronado@11698 5 CATEGORY="utilities"
toronado@11698 6 SHORT_DESC="A tool for automating interactive applications."
toronado@11698 7 MAINTAINER="samuel_trassare@yahoo.com"
toronado@11698 8 WEB_SITE="http://expect.sourceforge.net"
toronado@11698 9 TARBALL="$PACKAGE$VERSION.tar.gz"
toronado@11698 10 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
toronado@11698 11
toronado@11698 12 DEPENDS="tcl"
toronado@11698 13 BUILD_DEPENDS="tcl-dev"
toronado@11698 14
toronado@11698 15 # Rules to configure and make the package.
toronado@11698 16 compile_rules()
toronado@11698 17 {
pascal@15145 18 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /install-sh &&
toronado@11698 19 make &&
toronado@11698 20 make DESTDIR=$install install
toronado@11698 21 }
toronado@11698 22
toronado@11698 23 # Rules to gen a SliTaz package suitable for Tazpkg.
toronado@11698 24 genpkg_rules()
toronado@11698 25 {
toronado@11698 26 mkdir -p $fs/usr/bin \
toronado@11698 27 $fs/usr/lib
toronado@11698 28
toronado@11698 29 cp -a $install/usr/bin/expect $fs/usr/bin
toronado@11698 30 cp -a $install/usr/lib/* $fs/usr/lib
toronado@11698 31 }