wok-next diff expect/receipt @ rev 20866

mono: fix build by not enabling Spectre mitigation
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jul 01 23:19:43 2018 +0300 (2018-07-01)
parents fcdd50638150
children e7a485521d6a
line diff
     1.1 --- a/expect/receipt	Mon Dec 02 16:43:36 2013 +0000
     1.2 +++ b/expect/receipt	Sun Jul 01 23:19:43 2018 +0300
     1.3 @@ -1,32 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="expect"
     1.8  VERSION="5.45"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="A tool for automating interactive applications."
    1.11 +SHORT_DESC="A tool for automating interactive applications"
    1.12  MAINTAINER="samuel_trassare@yahoo.com"
    1.13  LICENSE="PublicDomain"
    1.14  WEB_SITE="http://expect.sourceforge.net"
    1.15 +
    1.16  TARBALL="$PACKAGE$VERSION.tar.gz"
    1.17  WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
    1.18  
    1.19 -DEPENDS="tcl"
    1.20  BUILD_DEPENDS="tcl-dev"
    1.21 +COOKOPTS="!skip-log-errors" # for:
    1.22 +# chmod: cannot access './install-sh': No such file or directory
    1.23  
    1.24 -# Rules to configure and make the package.
    1.25 -compile_rules()
    1.26 -{
    1.27 -	./configure $CONFIGURE_ARGS 2>&1 | grep -v /install-sh &&
    1.28 -	make &&
    1.29 -	make DESTDIR=$install install
    1.30 +compile_rules() {
    1.31 +	./configure $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install
    1.32  }
    1.33  
    1.34 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 -genpkg_rules()
    1.36 -{
    1.37 -	mkdir -p $fs/usr/bin \
    1.38 -		$fs/usr/lib
    1.39 -		
    1.40 -	cp -a $install/usr/bin/expect  $fs/usr/bin
    1.41 -	cp -a $install/usr/lib/* $fs/usr/lib
    1.42 +genpkg_rules() {
    1.43 +	copy @std
    1.44 +	DEPENDS="tcl"
    1.45  }