wok view matio/receipt @ rev 21174

updated libev and libev-dev (4.04 -> 4.25)
author Hans-G?nter Theisgen
date Mon Apr 01 16:56:17 2019 +0100 (2019-04-01)
parents 4ba8f9c4b80e
children bd59b88e9b9c
line source
1 # SliTaz package receipt.
3 PACKAGE="matio"
4 VERSION="1.5.2"
5 CATEGORY="development"
6 SHORT_DESC="MAT File I/O Library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/matio/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS="zlib"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }