# vim: set syn=sh: # Packager Dimitris Tzemos # Former Packager: George Vlahavas # Former Packager: Phill Watkins # Former Packager: Thorsten Muehlfelder pkgname=libxml++ pkgver=2.40.1 pkgrel=1dj source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz) docs=("AUTHORS" "ChangeLog" "COPYING" "INSTALL" "MAINTAINERS" "NEWS" "README") url=http://ftp.acc.umu.se/pub/GNOME/sources/libxml++ 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 }