wok diff expect/receipt @ rev 12821

gmp: dont build for ARM anymore...
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 21 23:58:06 2012 +0200 (2012-05-21)
parents
children 78d8c541da34
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/expect/receipt	Mon May 21 23:58:06 2012 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="expect"
     1.7 +VERSION="5.45"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="A tool for automating interactive applications."
    1.10 +MAINTAINER="samuel_trassare@yahoo.com"
    1.11 +WEB_SITE="http://expect.sourceforge.net"
    1.12 +TARBALL="$PACKAGE$VERSION.tar.gz"
    1.13 +WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
    1.14 +
    1.15 +DEPENDS="tcl"
    1.16 +BUILD_DEPENDS="tcl-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	./configure $CONFIGURE_ARGS &&
    1.22 +	make &&
    1.23 +	make DESTDIR=$install install
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/bin \
    1.30 +		$fs/usr/lib
    1.31 +		
    1.32 +	cp -a $install/usr/bin/expect  $fs/usr/bin
    1.33 +	cp -a $install/usr/lib/* $fs/usr/lib
    1.34 +}