wok annotate expect/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 78d8c541da34
children 86790a278e70
rev   line source
toronado@11698 1 # SliTaz package receipt.
toronado@11698 2
toronado@11698 3 PACKAGE="expect"
toronado@11698 4 VERSION="5.45"
toronado@11698 5 CATEGORY="utilities"
toronado@11698 6 SHORT_DESC="A tool for automating interactive applications."
toronado@11698 7 MAINTAINER="samuel_trassare@yahoo.com"
pascal@15588 8 LICENSE="PublicDomain"
toronado@11698 9 WEB_SITE="http://expect.sourceforge.net"
toronado@11698 10 TARBALL="$PACKAGE$VERSION.tar.gz"
toronado@11698 11 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
toronado@11698 12
toronado@11698 13 DEPENDS="tcl"
toronado@11698 14 BUILD_DEPENDS="tcl-dev"
toronado@11698 15
toronado@11698 16 # Rules to configure and make the package.
toronado@11698 17 compile_rules()
toronado@11698 18 {
pascal@15145 19 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /install-sh &&
toronado@11698 20 make &&
toronado@11698 21 make DESTDIR=$install install
toronado@11698 22 }
toronado@11698 23
toronado@11698 24 # Rules to gen a SliTaz package suitable for Tazpkg.
toronado@11698 25 genpkg_rules()
toronado@11698 26 {
toronado@11698 27 mkdir -p $fs/usr/bin \
toronado@11698 28 $fs/usr/lib
toronado@11698 29
toronado@11698 30 cp -a $install/usr/bin/expect $fs/usr/bin
toronado@11698 31 cp -a $install/usr/lib/* $fs/usr/lib
toronado@11698 32 }