summaryrefslogtreecommitdiffstats
path: root/test/blas/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2011-02-19 18:29:59 +0100
committertnut <thierryn1 at hispeed dot ch>2011-02-19 18:29:59 +0100
commit13649d120231a74b6bc8a0cc51ba9e3254cea7d6 (patch)
tree1a83bfe8170c1c9283f3d73d704156dc89cd8ff3 /test/blas/Pkgfile
parentaa8dbf45cd553b0f62c62c5c5fb4d51d17f03304 (diff)
downloadnutyx-pakxe-13649d120231a74b6bc8a0cc51ba9e3254cea7d6.tar.gz
nutyx-pakxe-13649d120231a74b6bc8a0cc51ba9e3254cea7d6.tar.bz2
nutyx-pakxe-13649d120231a74b6bc8a0cc51ba9e3254cea7d6.tar.xz
nutyx-pakxe-13649d120231a74b6bc8a0cc51ba9e3254cea7d6.zip
suppression du dossier test
Diffstat (limited to 'test/blas/Pkgfile')
-rw-r--r--test/blas/Pkgfile30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/blas/Pkgfile b/test/blas/Pkgfile
deleted file mode 100644
index eecd0fc96..000000000
--- a/test/blas/Pkgfile
+++ /dev/null
@@ -1,30 +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:
-
-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/
-}