wok view expect/receipt @ rev 17854

Up: slitaz-boot-scripts (5.7.1)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 25 00:32:22 2015 +0200 (2015-03-25)
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 }