# HG changeset patch # User Hans-G?nter Theisgen # Date 1556123870 -3600 # Node ID bd59b88e9b9cd006b8d3585dc7f4a9bc17f6bf52 # Parent 5f978b12981b4f571fb94b977cfd8f9e6c3ca12f updated matio and matio-dev (1.5.2 -> 1.5.15) diff -r 5f978b12981b -r bd59b88e9b9c matio-dev/receipt --- a/matio-dev/receipt Wed Apr 24 18:02:37 2019 +0200 +++ b/matio-dev/receipt Wed Apr 24 17:37:50 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="matio-dev" -VERSION="1.5.2" +VERSION="1.5.15" CATEGORY="development" -SHORT_DESC="MAT File I/O Library." +SHORT_DESC="Library for reading and writing Matlab MAT files - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="https://sourceforge.net/projects/matio/" -WANTED="matio" +WEB_SITE="https://matio.sourceforge.io/" DEPENDS="matio pkg-config" +WANTED="matio" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 5f978b12981b -r bd59b88e9b9c matio/receipt --- a/matio/receipt Wed Apr 24 18:02:37 2019 +0200 +++ b/matio/receipt Wed Apr 24 17:37:50 2019 +0100 @@ -1,24 +1,27 @@ # SliTaz package receipt. PACKAGE="matio" -VERSION="1.5.2" +VERSION="1.5.15" CATEGORY="development" -SHORT_DESC="MAT File I/O Library." +SHORT_DESC="Library for reading and writing Matlab MAT files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://matio.sourceforge.io/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://sourceforge.net/projects/matio/" -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" DEPENDS="zlib" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && + make -j 1 && make DESTDIR=$DESTDIR install } @@ -26,6 +29,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }