wok view libofx/receipt @ rev 14841

libofx, grisbi: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 17 23:20:21 2013 +0200 (2013-07-17)
parents 82aa64f4d60d
children f1e8995566a5
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="http://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 --prefix=/usr $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/bin $fs/usr/include /usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/include $fs/usr
31 cp -a $install/usr/lib $fs/usr
33 }