wok view libofx/receipt @ rev 14839

Up: libofx (0.9.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 17 23:08:46 2013 +0200 (2013-07-17)
parents d1768332cee0
children d9b88fe66325
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://libofx.sourceforge.net/"
10 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/$PACKAGE/$VERSION/$TARBALL"
12 DEPENDS="opensp"
13 BUILD_DEPENDS="opensp-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/include /usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/include $fs/usr
30 cp -a $install/usr/lib $fs/usr
32 }