summaryrefslogtreecommitdiffstats
path: root/eigen
diff options
context:
space:
mode:
Diffstat (limited to 'eigen')
-rw-r--r--eigen/.footprint.i68615
-rw-r--r--eigen/.footprint.x86_6415
-rw-r--r--eigen/.md5sum.i6861
-rw-r--r--eigen/.md5sum.x86_641
-rwxr-xr-xeigen/Pkgfile20
5 files changed, 52 insertions, 0 deletions
diff --git a/eigen/.footprint.i686 b/eigen/.footprint.i686
new file mode 100644
index 000000000..ad1575d27
--- /dev/null
+++ b/eigen/.footprint.i686
@@ -0,0 +1,15 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/eigen/
+-rw-r--r-- root/root usr/include/eigen/linearsolver.h
+-rw-r--r-- root/root usr/include/eigen/linearsolverbase.h
+-rw-r--r-- root/root usr/include/eigen/ludecomposition.h
+-rw-r--r-- root/root usr/include/eigen/ludecompositionbase.h
+-rw-r--r-- root/root usr/include/eigen/matrix.h
+-rw-r--r-- root/root usr/include/eigen/matrixbase.h
+-rw-r--r-- root/root usr/include/eigen/projective.h
+-rw-r--r-- root/root usr/include/eigen/regression.h
+-rw-r--r-- root/root usr/include/eigen/regressioninternal.h
+-rw-r--r-- root/root usr/include/eigen/util.h
+-rw-r--r-- root/root usr/include/eigen/vector.h
+-rw-r--r-- root/root usr/include/eigen/vectorbase.h
diff --git a/eigen/.footprint.x86_64 b/eigen/.footprint.x86_64
new file mode 100644
index 000000000..ad1575d27
--- /dev/null
+++ b/eigen/.footprint.x86_64
@@ -0,0 +1,15 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/eigen/
+-rw-r--r-- root/root usr/include/eigen/linearsolver.h
+-rw-r--r-- root/root usr/include/eigen/linearsolverbase.h
+-rw-r--r-- root/root usr/include/eigen/ludecomposition.h
+-rw-r--r-- root/root usr/include/eigen/ludecompositionbase.h
+-rw-r--r-- root/root usr/include/eigen/matrix.h
+-rw-r--r-- root/root usr/include/eigen/matrixbase.h
+-rw-r--r-- root/root usr/include/eigen/projective.h
+-rw-r--r-- root/root usr/include/eigen/regression.h
+-rw-r--r-- root/root usr/include/eigen/regressioninternal.h
+-rw-r--r-- root/root usr/include/eigen/util.h
+-rw-r--r-- root/root usr/include/eigen/vector.h
+-rw-r--r-- root/root usr/include/eigen/vectorbase.h
diff --git a/eigen/.md5sum.i686 b/eigen/.md5sum.i686
new file mode 100644
index 000000000..e6e0e8021
--- /dev/null
+++ b/eigen/.md5sum.i686
@@ -0,0 +1 @@
+960d7e5fb6542270eae4d53ca99b607c eigen-1.0.5.tar.gz
diff --git a/eigen/.md5sum.x86_64 b/eigen/.md5sum.x86_64
new file mode 100644
index 000000000..e6e0e8021
--- /dev/null
+++ b/eigen/.md5sum.x86_64
@@ -0,0 +1 @@
+960d7e5fb6542270eae4d53ca99b607c eigen-1.0.5.tar.gz
diff --git a/eigen/Pkgfile b/eigen/Pkgfile
new file mode 100755
index 000000000..4062b00a5
--- /dev/null
+++ b/eigen/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Librairie C++ pour le calcul matriciel
+# URL: http://eigen.tuxfamily.org/
+# Maintainer: NuTyX packager team
+# Packager: lesibel at free dot fr
+# Depends on: cmake
+# Run on:
+
+name=eigen
+version=1.0.5
+release=1
+source=(http://download.tuxfamily.org/eigen/eigen-$version.tar.gz)
+
+build() {
+ cd $name
+ mkdir build
+ cd build
+ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+ make
+ make DESTDIR=$PKG install
+}