summaryrefslogtreecommitdiffstats
path: root/extra/blas/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2009-12-17 21:00:59 +0100
committertnut <thierryn1 at hispeed dot ch>2009-12-17 21:00:59 +0100
commit25c9e80d94002be73e9446fdc20cb7c7e84dcc3f (patch)
tree7b0c4efc5fa29e5946e3290d83b3c5c522978d90 /extra/blas/Pkgfile
parent63076140b21446831769682ff1b63750ce091ab1 (diff)
downloadnutyx-pakxe-25c9e80d94002be73e9446fdc20cb7c7e84dcc3f.tar.gz
nutyx-pakxe-25c9e80d94002be73e9446fdc20cb7c7e84dcc3f.tar.bz2
nutyx-pakxe-25c9e80d94002be73e9446fdc20cb7c7e84dcc3f.tar.xz
nutyx-pakxe-25c9e80d94002be73e9446fdc20cb7c7e84dcc3f.zip
blas, déplacé dans base et maj des dépendances
Diffstat (limited to 'extra/blas/Pkgfile')
-rw-r--r--extra/blas/Pkgfile31
1 files changed, 0 insertions, 31 deletions
diff --git a/extra/blas/Pkgfile b/extra/blas/Pkgfile
deleted file mode 100644
index a69e4cb11..000000000
--- a/extra/blas/Pkgfile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Description: Basic Linear Algebra Subprograms
-# URL: http://www.netlib.org/blas
-# Maintainer: NuTyX core team
-# Packager: lesibel at free dot fr
-# Depends on: gcc-libs
-
-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/
-}