wok-next diff expect/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents fcdd50638150
children e7a485521d6a
line diff
     1.1 --- a/expect/receipt	Mon Dec 02 16:43:36 2013 +0000
     1.2 +++ b/expect/receipt	Sat Feb 24 16:17:33 2018 +0200
     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  }