wok view expect/receipt @ rev 11698

added Expect
author toronado
date Sat Feb 18 15:12:19 2012 -0800 (2012-02-18)
parents
children 78d8c541da34
line source
1 # SliTaz package receipt.
3 PACKAGE="expect"
4 VERSION="5.45"
5 CATEGORY="utilities"
6 SHORT_DESC="A tool for automating interactive applications."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 WEB_SITE="http://expect.sourceforge.net"
9 TARBALL="$PACKAGE$VERSION.tar.gz"
10 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
12 DEPENDS="tcl"
13 BUILD_DEPENDS="tcl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$install install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin \
27 $fs/usr/lib
29 cp -a $install/usr/bin/expect $fs/usr/bin
30 cp -a $install/usr/lib/* $fs/usr/lib
31 }