wok view expect/receipt @ rev 15581

xorg-cf-files: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 11:11:23 2013 +0000 (2013-11-30)
parents d1b57a67e58d
children fcdd50638150
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 2>&1 | grep -v /install-sh &&
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 }