wok-next diff popt/receipt @ rev 20558

openmotif: fix syntax error in receipt
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 07 16:14:50 2018 +0300 (2018-04-07)
parents 9278a60d6895
children 10df65db91ad
line diff
     1.1 --- a/popt/receipt	Mon Jun 05 16:48:55 2017 +0300
     1.2 +++ b/popt/receipt	Sat Apr 07 16:14:50 2018 +0300
     1.3 @@ -7,7 +7,6 @@
     1.4  MAINTAINER="pankso@slitaz.org"
     1.5  LICENSE="MIT"
     1.6  WEB_SITE="http://directory.fsf.org/wiki/Popt"
     1.7 -HOST_ARCH="i486 arm"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WGET_URL="http://rpm5.org/files/popt/$TARBALL"
    1.11 @@ -15,20 +14,16 @@
    1.12  BUILD_DEPENDS="gettext"
    1.13  SPLIT="popt-dev"
    1.14  
    1.15 -# Rules to configure and make the package.
    1.16 -compile_rules()
    1.17 -{
    1.18 +compile_rules() {
    1.19  	./configure \
    1.20  		--disable-static \
    1.21  		$CONFIGURE_ARGS &&
    1.22  	make && make install
    1.23  }
    1.24  
    1.25 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 -genpkg_rules()
    1.27 -{
    1.28 +genpkg_rules() {
    1.29  	case $PACKAGE in
    1.30 -		popt) copy @std;;
    1.31 +		popt)  copy @std;;
    1.32  		*-dev) copy @dev;;
    1.33  	esac
    1.34  }