wok diff libtirpc/receipt @ rev 22417

clamav-dev rebuild: WANTED package clamav is broken
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 08:20:39 2019 +0000 (2019-12-15)
parents 8dd8bab3f0ca
children ce958cbd9cf3
line diff
     1.1 --- a/libtirpc/receipt	Thu Jan 24 14:51:04 2019 +0100
     1.2 +++ b/libtirpc/receipt	Sun Dec 15 08:20:39 2019 +0000
     1.3 @@ -1,27 +1,34 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libtirpc"
     1.7 -VERSION="0.2.1"
     1.8 +VERSION="1.1.4"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Transport-Independent RPC library."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="BSD"
    1.13 +WEB_SITE="https://sourceforge.net/projects/libtirpc/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WEB_SITE="https://sourceforge.net/projects/libtirpc/"
    1.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +
    1.19  HOST_ARCH="i486 arm"
    1.20  
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	./configure $CONFIGURE_ARGS &&
    1.25 -	make && make install
    1.26 +	./configure			\
    1.27 +		sysconfdir=/etc		\
    1.28 +		--disable-gssapi	\
    1.29 +		$CONFIGURE_ARGS &&
    1.30 +	make -j 1 &&
    1.31 +	make 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/lib
    1.38 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 -	cp -a $install/etc $fs
    1.40 +
    1.41 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.42 +	cp -a $install/etc		$fs
    1.43  }