wok view libxml++/receipt @ rev 10019

thunar-vfs: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 12:30:41 2011 +0200 (2011-05-19)
parents 5c2b7c37f604
children f2a3ca861fbd
line source
1 # SliTaz package receipt.
3 PACKAGE="libxml++"
4 VERSION="2.32.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="C++ wrapper for the libxml XML parser library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://libxmlplusplus.sourceforge.net/"
10 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="glibmm libsigc++ libxml2 zlib gcc-lib-base"
13 BUILD_DEPENDS="glibmm-dev libsigc++-dev libxml2-dev zlib-dev pkg-config"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --disable-documentation &&
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 $_pkg/usr/lib/*.so* $fs/usr/lib
30 }