summaryrefslogtreecommitdiffstats
path: root/extra/blas/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-10-15 15:21:52 +0200
committertnut <tnut at nutyx dot com>2011-10-15 15:21:52 +0200
commit2b3877d913cb0c543c31698a1bf8d21508598ba2 (patch)
treedef3d706f6141fc68efac43405f0d049ce69d6c6 /extra/blas/Pkgfile
parentb829074b035e4f247c74b76fae8380c2577c7da8 (diff)
downloadnutyx-extra-2b3877d913cb0c543c31698a1bf8d21508598ba2.tar.gz
nutyx-extra-2b3877d913cb0c543c31698a1bf8d21508598ba2.tar.bz2
nutyx-extra-2b3877d913cb0c543c31698a1bf8d21508598ba2.tar.xz
nutyx-extra-2b3877d913cb0c543c31698a1bf8d21508598ba2.zip
blas dans extra
Diffstat (limited to 'extra/blas/Pkgfile')
-rw-r--r--extra/blas/Pkgfile30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/blas/Pkgfile b/extra/blas/Pkgfile
new file mode 100644
index 000000000..eecd0fc96
--- /dev/null
+++ b/extra/blas/Pkgfile
@@ -0,0 +1,30 @@
+# Description: Basic Linear Algebra Subprograms
+# URL: http://www.netlib.org/blas
+# Maintainer: NuTyX core team
+# Packager: lesibel at free dot fr
+# Depends on:
+
+name=blas
+version=20070405
+release=1
+source=(http://www.netlib.org/blas/blas.tgz \
+ make.inc license.txt)
+
+build() {
+ cd BLAS
+
+ # Build with Position Independent Code (PIC) FS#12464 (i686), required for x86_64
+ CFLAGS="${CFLAGS} -fPIC"
+
+ cp $SRC/make.inc $SRC/BLAS/
+ make OPTS="${CFLAGS}" NOOPT="${CFLAGS/-O?/-O0}"
+
+ install -m755 -d $PKG/usr/lib
+ install -m755 libblas.so.3.0.3 $PKG/usr/lib/
+ ln -sf libblas.so.3.0.3 $PKG/usr/lib/libblas.so
+ ln -sf libblas.so.3.0.3 $PKG/usr/lib/libblas.so.3
+
+ # Install custom license
+ install -d $PKG/usr/share/licenses/$name
+ install -m644 $SRC/license.txt $PKG/usr/share/licenses/$name/
+}