summaryrefslogtreecommitdiffstats
path: root/base/expat
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-08 18:43:48 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-08 18:43:48 +0200
commit1654efe9275cd3427a839cfd201d1c3b1b5a6edd (patch)
tree16df0fd6a39ecb6f003dec2113632c21ac69d975 /base/expat
parent27c9c54266dfb7f4ca903b11adebd63b8b7f9c3a (diff)
downloadnutyx-extra-1654efe9275cd3427a839cfd201d1c3b1b5a6edd.tar.gz
nutyx-extra-1654efe9275cd3427a839cfd201d1c3b1b5a6edd.tar.bz2
nutyx-extra-1654efe9275cd3427a839cfd201d1c3b1b5a6edd.tar.xz
nutyx-extra-1654efe9275cd3427a839cfd201d1c3b1b5a6edd.zip
Ajout de expat#2.0.1-1
Diffstat (limited to 'base/expat')
-rw-r--r--base/expat/.footprint16
-rw-r--r--base/expat/.md5sum1
-rwxr-xr-xbase/expat/Pkgfile21
3 files changed, 38 insertions, 0 deletions
diff --git a/base/expat/.footprint b/base/expat/.footprint
new file mode 100644
index 000000000..e1a852815
--- /dev/null
+++ b/base/expat/.footprint
@@ -0,0 +1,16 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/xmlwf
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/expat.h
+-rw-r--r-- root/root usr/include/expat_external.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libexpat.a
+-rwxr-xr-x root/root usr/lib/libexpat.la
+lrwxrwxrwx root/root usr/lib/libexpat.so -> libexpat.so.1.5.2
+lrwxrwxrwx root/root usr/lib/libexpat.so.1 -> libexpat.so.1.5.2
+-rwxr-xr-x root/root usr/lib/libexpat.so.1.5.2
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/xmlwf.1.gz
diff --git a/base/expat/.md5sum b/base/expat/.md5sum
new file mode 100644
index 000000000..9d051ba00
--- /dev/null
+++ b/base/expat/.md5sum
@@ -0,0 +1 @@
+ee8b492592568805593f81f8cdf2a04c expat-2.0.1.tar.gz
diff --git a/base/expat/Pkgfile b/base/expat/Pkgfile
new file mode 100755
index 000000000..8f2123924
--- /dev/null
+++ b/base/expat/Pkgfile
@@ -0,0 +1,21 @@
+# Description: A fast, non-validating, stream-oriented XML parsing library
+# URL: http://expat.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=expat
+version=2.0.1
+release=1
+source=( http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
+
+
+build() {
+cd $name-$version
+./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --disable-debug
+make
+make DESTDIR=$PKG install
+}