wok rev 21339

updated gnuradio (3.7.10.1 -> 3.7.13.4)
author Hans-G?nter Theisgen
date Sat Apr 20 11:34:23 2019 +0100 (2019-04-20)
parents d0b13dc0fe1c
children 7c0eaf6ae321
files gnuradio/receipt
line diff
     1.1 --- a/gnuradio/receipt	Fri Apr 19 22:03:41 2019 +0200
     1.2 +++ b/gnuradio/receipt	Sat Apr 20 11:34:23 2019 +0100
     1.3 @@ -1,44 +1,49 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="gnuradio"
     1.7 -VERSION="3.7.10.1"
     1.8 +VERSION="3.7.13.4"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="pascal.bellard@slitaz.org"
    1.11  SHORT_DESC="Signal processing blocks to implement software radios."
    1.12  LICENSE="GPL3"
    1.13  WEB_SITE="https://gnuradio.org/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16  WGET_URL="$WEB_SITE/releases/$PACKAGE/$TARBALL"
    1.17  
    1.18 -DEPENDS="python libboost-date-time libboost-program-options \
    1.19 -libboost-filesystem libboost-system libboost-thread orc alsa-lib \
    1.20 -gsl fftw jack-audio-connection-kit portaudio"
    1.21 -BUILD_DEPENDS="cmake fftw-dev python-numpy python-cheetah python-lxml \
    1.22 -libboost-filesystem-dev libboost-system-dev libboost-test-dev libboost-dev \
    1.23 -libboost-program-options-dev libboost-thread-dev libboost-tr1-dev \
    1.24 -libboost-regex-dev pygtk-dev libsdl-dev \
    1.25 -pkg-config swig cppunit-dev orc-dev python-sphinx gsl-dev libusb-dev \
    1.26 -alsa-lib-dev jack-audio-connection-kit-dev portaudio-dev log4c-dev"
    1.27 +DEPENDS="alsa-lib fftw gsl jack-audio-connection-kit \
    1.28 +	libboost-date-time libboost-filesystem libboost-program-options \
    1.29 +	libboost-system libboost-thread orc portaudio python"
    1.30 +BUILD_DEPENDS="alsa-lib-dev cmake cppunit-dev fftw-dev gsl-dev \
    1.31 +	jack-audio-connection-kit-dev libboost-dev libboost-filesystem-dev \
    1.32 +	libboost-program-options-dev libboost-regex-dev libboost-system-dev \
    1.33 +	libboost-test-dev libboost-thread-dev libboost-tr1-dev \
    1.34 +	libsdl-dev libusb-dev log4c-dev orc-dev pkg-config portaudio-dev \
    1.35 +	pygtk-dev python-cheetah python-lxml python-numpy python-sphinx swig"
    1.36  
    1.37  # Rules to configure and make the package.
    1.38  compile_rules()
    1.39  {
    1.40  	mkdir build
    1.41  	cd build
    1.42 -	cmake -Wno-dev -DCMAKE_INSTALL_PREFIX=/usr .. &&
    1.43 -	make &&
    1.44 +	cmake ..				\
    1.45 +		-Wno-dev			\
    1.46 +		-DCMAKE_INSTALL_PREFIX=/usr &&
    1.47 +	make -j 1 &&
    1.48  	sed -i 's,bin/ctest.*,& || true,' Makefile &&
    1.49 -	make test &&
    1.50 +	make -j 1 test &&
    1.51  	make DESTDIR=$DESTDIR install
    1.52  }
    1.53  	
    1.54  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.55  genpkg_rules()
    1.56  {
    1.57 -	mkdir -p $fs/usr/share $fs/usr/lib
    1.58 -	cp -a $install/etc $fs
    1.59 -	cp -a $install/usr/bin $fs/usr
    1.60 -	cp -a $install/usr/share/gnuradio $fs/usr/share
    1.61 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.62 -	cp -a $install/usr/lib/python* $fs/usr/lib
    1.63 +	mkdir -p $fs/usr/share
    1.64 +	mkdir -p  $fs/usr/lib
    1.65 +
    1.66 +	cp -a $install/etc			$fs
    1.67 +	cp -a $install/usr/bin			$fs/usr
    1.68 +	cp -a $install/usr/share/gnuradio	$fs/usr/share
    1.69 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    1.70 +	cp -a $install/usr/lib/python*		$fs/usr/lib
    1.71  }