wok-next diff eigen/receipt @ rev 21368

updated micropython (1.0.1 -> 1.12)
author Hans-G?nter Theisgen
date Thu Apr 16 09:40:18 2020 +0100 (2020-04-16)
parents d958fec46c9f
children 018c5a6ef002
line diff
     1.1 --- a/eigen/receipt	Tue Jul 10 20:08:05 2018 +0300
     1.2 +++ b/eigen/receipt	Thu Apr 16 09:40:18 2020 +0100
     1.3 @@ -1,33 +1,29 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="eigen"
     1.8  VERSION="3.2.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="A C++ template library for linear algebra."
    1.11 +SHORT_DESC="A C++ template library for linear algebra"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="MPL2 LGPL BSD"
    1.14 -WEB_SITE="http://eigen.tuxfamily.org/"
    1.15 +WEB_SITE="http://eigen.tuxfamily.org/index.php?title=Main_Page"
    1.16  REPOLOGY="eigen3"
    1.17  
    1.18  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.19  WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2"
    1.20  
    1.21 -DEPENDS=""
    1.22  BUILD_DEPENDS="cmake glib"
    1.23  
    1.24 -# Rules to configure and make the package.
    1.25 -#
    1.26 -compile_rules()
    1.27 -{
    1.28 +compile_rules() {
    1.29  	mkdir built
    1.30 -	cd built
    1.31 -	cmake -DCMAKE_INSTALL_PREFIX=/usr ../
    1.32 +	cd    built
    1.33 +	cmake \
    1.34 +		-DCMAKE_INSTALL_PREFIX=/usr \
    1.35 +		.. &&
    1.36  	make &&
    1.37 -	make DESTDIR=$DESTDIR install
    1.38 +	make DESTDIR=$install install
    1.39  }
    1.40  
    1.41 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.42 -genpkg_rules()
    1.43 -{
    1.44 +genpkg_rules() {
    1.45  	cp -a $install/* $fs
    1.46  }