wok view expect/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents fcdd50638150
children 9a7bd10c8942
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="https://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 }