21 lines
511 B
Plaintext
21 lines
511 B
Plaintext
|
# Description: C++ wrapper for the libxml XML parser library
|
||
|
# URL: http://libxml++.sf.net
|
||
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
||
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
||
|
# Depends on: glibmm
|
||
|
|
||
|
name=libxml++1
|
||
|
version=1.0.4
|
||
|
release=1
|
||
|
source="http://ftp.gnome.org/pub/GNOME/sources/libxml++/1.0/libxml++-$version.tar.bz2"
|
||
|
|
||
|
build() {
|
||
|
cd libxml++-$version
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-nls
|
||
|
make
|
||
|
make install DESTDIR=$PKG
|
||
|
rm -rf $PKG/usr/share
|
||
|
}
|