# vim: set syn=sh: # Packager: Dimitris Tzemos pkgname=libxml++ pkgver=2.40.1 pkgrel=1dj source=("http://ftp.gnome.org/pub/GNOME/sources/libxml++/2.40/libxml++-2.40.1.tar.xz") docs=("AUTHORS" "ChangeLog" "COPYING" "INSTALL" "MAINTAINERS" "NEWS" "README") url=http://libxmlplusplus.sourceforge.net slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libxml++ (C++ bindings for the libxml2 library)" "This library provides a C++ interface to XML files. It uses libxml 2" "to access the XML files." ) build() { set -e cd $startdir/src/$pkgname-$pkgver ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --infodir=/usr/info \ --docdir=/usr/doc/$pkgname-$pkgver \ --build=$arch-slackware-linux \ --disable-documentation \ --disable-static make -j $numjobs \ libdocdir=/usr/doc/$pkgname-$pkgver make install \ DESTDIR=$startdir/pkg \ libdocdir=/usr/doc/$pkgname-$pkgver set +e }