wok rev 21708

djmount: added automake to BUILD_DEPENDS
author Hans-G?nter Theisgen
date Fri Jun 07 16:30:45 2019 +0100 (2019-06-07)
parents ca2d540db8f5
children f9690e227edd
files djmount/receipt
line diff
     1.1 --- a/djmount/receipt	Fri Jun 07 13:37:06 2019 +0100
     1.2 +++ b/djmount/receipt	Fri Jun 07 16:30:45 2019 +0100
     1.3 @@ -12,19 +12,21 @@
     1.4  TAGS="upnp"
     1.5  
     1.6  DEPENDS="fuse readline"
     1.7 -BUILD_DEPENDS="fuse-dev readline-dev libupnp libupnp-dev"
     1.8 +BUILD_DEPENDS="automake fuse-dev libupnp libupnp-dev readline-dev"
     1.9  
    1.10  # Rules to configure and make the package.
    1.11  compile_rules()
    1.12  {
    1.13 -	cd $src
    1.14  	sed -i 's|upnptools.h>|&\n#include <upnp/upnp.h>|' djmount/upnp_util.h
    1.15 -	./configure LDFLAGS="-lupnp" \
    1.16 -		--prefix=/usr \
    1.17 -		--infodir=/usr/share/info \
    1.18 -		--mandir=/usr/share/man \
    1.19 +
    1.20 +	./configure				\
    1.21 +		LDFLAGS="-lupnp"		\
    1.22 +		--prefix=/usr			\
    1.23 +		--infodir=/usr/share/info	\
    1.24 +		--mandir=/usr/share/man		\
    1.25  		$CONFIGURE_ARGS 2>&1 | grep -v /config.rpath: &&
    1.26 -	make -j1 && make -j1 install
    1.27 +	make -j1 &&
    1.28 +	make -j1 install
    1.29  }
    1.30  
    1.31  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 @@ -33,4 +35,3 @@
    1.33  	mkdir -p $fs/usr
    1.34  	cp -a $install/usr/bin $fs/usr
    1.35  }
    1.36 -