wok diff neon/receipt @ rev 23332

updated perl-file-slurp (9999.13 -> 9999.30)
author Hans-G?nter Theisgen
date Tue Mar 31 07:01:35 2020 +0100 (2020-03-31)
parents 3765f181a6d5
children 241fb98cab1c
line diff
     1.1 --- a/neon/receipt	Sat Nov 30 17:02:58 2013 +0000
     1.2 +++ b/neon/receipt	Tue Mar 31 07:01:35 2020 +0100
     1.3 @@ -1,29 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="neon"
     1.7 -VERSION="0.29.3"
     1.8 +VERSION="0.30.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Neon HTTP and WebDAV client library"
    1.11 +TAGS="http webdav"
    1.12 +SHORT_DESC="Neon HTTP and WebDAV client library."
    1.13  MAINTAINER="lehswe@gmail.com"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="http://www.webdav.org/neon"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="http://www.webdav.org/neon"
    1.19  WGET_URL="http://www.webdav.org/neon/$TARBALL"
    1.20 -TAGS="http webdav"
    1.21  
    1.22 -DEPENDS="libssl zlib libkrb5 libcomerr3 expat"
    1.23 -BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev openssl-dev"
    1.24 +DEPENDS="expat libcomerr3 libkrb5 libssl zlib"
    1.25 +BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev zlib-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	cd $src
    1.31 -	# SOCK_CLOEXEC needs linux 2.6.27+
    1.32 -	#sed -i 's/| SOCK_CLOEXEC//' src/ne_socket.c
    1.33 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.34 -	--with-ssl=openssl --mandir=/usr/share/man \
    1.35 -	--enable-shared --disable-static \
    1.36 -	$CONFIGURE_ARGS &&
    1.37 +	./configure				\
    1.38 +		--prefix=/usr			\
    1.39 +		--infodir=/usr/share/info	\
    1.40 +		--with-ssl=openssl		\
    1.41 +		--mandir=/usr/share/man		\
    1.42 +		--enable-shared			\
    1.43 +		--disable-static		\
    1.44 +		$CONFIGURE_ARGS &&
    1.45  	make &&
    1.46  	make DESTDIR=$DESTDIR install
    1.47  }
    1.48 @@ -32,8 +34,7 @@
    1.49  genpkg_rules()
    1.50  {
    1.51  	mkdir -p $fs/usr/lib
    1.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.53 -	cp -a $install/usr/bin $fs/usr
    1.54 +
    1.55 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.56 +	cp -a $install/usr/bin		$fs/usr
    1.57  }
    1.58 -
    1.59 -