wok view libofx/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents f1e8995566a5
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="libofx"
4 VERSION="0.9.8"
5 CATEGORY="misc"
6 SHORT_DESC="OFX parser library"
7 MAINTAINER="remyhr@free.fr"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libofx.sourceforge.net/"
11 WGET_URL="https://sourceforge.net/projects/$PACKAGE/files/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS="opensp"
14 BUILD_DEPENDS="opensp-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin $fs/usr/include /usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/include $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 }