wok rev 21422
updated matio and matio-dev (1.5.2 -> 1.5.15)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 24 17:37:50 2019 +0100 (2019-04-24) |
parents | 5f978b12981b |
children | 52d9234f1d70 |
files | matio-dev/receipt matio/receipt |
line diff
1.1 --- a/matio-dev/receipt Wed Apr 24 18:02:37 2019 +0200 1.2 +++ b/matio-dev/receipt Wed Apr 24 17:37:50 2019 +0100 1.3 @@ -1,21 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="matio-dev" 1.7 -VERSION="1.5.2" 1.8 +VERSION="1.5.15" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="MAT File I/O Library." 1.11 +SHORT_DESC="Library for reading and writing Matlab MAT files - development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 -WEB_SITE="https://sourceforge.net/projects/matio/" 1.15 -WANTED="matio" 1.16 +WEB_SITE="https://matio.sourceforge.io/" 1.17 1.18 DEPENDS="matio pkg-config" 1.19 +WANTED="matio" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/*a $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 + 1.29 + cp -a $install/usr/include $fs/usr 1.30 + cp -a $install/usr/lib/*a $fs/usr/lib 1.31 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 }
2.1 --- a/matio/receipt Wed Apr 24 18:02:37 2019 +0200 2.2 +++ b/matio/receipt Wed Apr 24 17:37:50 2019 +0100 2.3 @@ -1,24 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="matio" 2.7 -VERSION="1.5.2" 2.8 +VERSION="1.5.15" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="MAT File I/O Library." 2.11 +SHORT_DESC="Library for reading and writing Matlab MAT files." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="BSD" 2.14 +WEB_SITE="https://matio.sourceforge.io/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://sourceforge.net/projects/matio/" 2.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" 2.19 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.20 2.21 DEPENDS="zlib" 2.22 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 - ./configure --prefix=/usr --infodir=/usr/share/info \ 2.27 - --mandir=/usr/share/man \ 2.28 + ./configure \ 2.29 + --prefix=/usr \ 2.30 + --infodir=/usr/share/info \ 2.31 + --mandir=/usr/share/man \ 2.32 $CONFIGURE_ARGS && 2.33 - make && 2.34 + make -j 1 && 2.35 make DESTDIR=$DESTDIR install 2.36 } 2.37 2.38 @@ -26,6 +29,7 @@ 2.39 genpkg_rules() 2.40 { 2.41 mkdir -p $fs/usr/lib 2.42 - cp -a $install/usr/bin $fs/usr 2.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.44 + 2.45 + cp -a $install/usr/bin $fs/usr 2.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.47 }