summaryrefslogtreecommitdiffstats
path: root/extra/libxml2/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libxml2/Pkgfile')
-rwxr-xr-xextra/libxml2/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/libxml2/Pkgfile b/extra/libxml2/Pkgfile
new file mode 100755
index 000000000..306ca6ed1
--- /dev/null
+++ b/extra/libxml2/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Librairie pour XML version 2
+# URL: http://xmlsoft.org/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: python
+
+name=libxml2
+version=2.7.3
+release=1
+source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz)
+
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/{doc,gtk-doc}
+}