wok view expect/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 78d8c541da34
children 86790a278e70
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 LICENSE="PublicDomain"
9 WEB_SITE="http://expect.sourceforge.net"
10 TARBALL="$PACKAGE$VERSION.tar.gz"
11 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
13 DEPENDS="tcl"
14 BUILD_DEPENDS="tcl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /install-sh &&
20 make &&
21 make DESTDIR=$install install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin \
28 $fs/usr/lib
30 cp -a $install/usr/bin/expect $fs/usr/bin
31 cp -a $install/usr/lib/* $fs/usr/lib
32 }