wok annotate matio/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 86790a278e70
children b220dec21248
rev   line source
pascal@17973 1 # SliTaz package receipt.
pascal@17973 2
pascal@17973 3 PACKAGE="matio"
Hans-G?nter@21422 4 VERSION="1.5.15"
pascal@17973 5 CATEGORY="development"
Hans-G?nter@21422 6 SHORT_DESC="Library for reading and writing Matlab MAT files."
pascal@17973 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17973 8 LICENSE="BSD"
Hans-G?nter@21422 9 WEB_SITE="https://matio.sourceforge.io/"
Hans-G?nter@21422 10
pascal@17973 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21422 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@17973 13
pascal@17973 14 DEPENDS="zlib"
pascal@17973 15
pascal@17973 16 # Rules to configure and make the package.
pascal@17973 17 compile_rules()
pascal@17973 18 {
Hans-G?nter@21422 19 ./configure \
Hans-G?nter@21422 20 --prefix=/usr \
Hans-G?nter@21422 21 --infodir=/usr/share/info \
Hans-G?nter@21422 22 --mandir=/usr/share/man \
pascal@17973 23 $CONFIGURE_ARGS &&
Hans-G?nter@21422 24 make -j 1 &&
pascal@17973 25 make DESTDIR=$DESTDIR install
pascal@17973 26 }
pascal@17973 27
pascal@17973 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17973 29 genpkg_rules()
pascal@17973 30 {
pascal@17973 31 mkdir -p $fs/usr/lib
Hans-G?nter@21422 32
Hans-G?nter@21422 33 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21422 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@17973 35 }