summaryrefslogtreecommitdiffstats
path: root/extra/lapack/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2011-03-09 20:05:13 +0100
committertnut <thierryn1 at hispeed dot ch>2011-03-09 20:05:13 +0100
commitdcc096e425f1c48733ca5cb27ad68f2036015b85 (patch)
treed20ab8e999651f4d51f5198d3eb7c629fa1a9d0d /extra/lapack/Pkgfile
parent157bff323f0a9c7a9143d5983805ebeda52513b9 (diff)
downloadnutyx-extra-dcc096e425f1c48733ca5cb27ad68f2036015b85.tar.gz
nutyx-extra-dcc096e425f1c48733ca5cb27ad68f2036015b85.tar.bz2
nutyx-extra-dcc096e425f1c48733ca5cb27ad68f2036015b85.tar.xz
nutyx-extra-dcc096e425f1c48733ca5cb27ad68f2036015b85.zip
lapack dans ouvert
Diffstat (limited to 'extra/lapack/Pkgfile')
-rw-r--r--extra/lapack/Pkgfile32
1 files changed, 0 insertions, 32 deletions
diff --git a/extra/lapack/Pkgfile b/extra/lapack/Pkgfile
deleted file mode 100644
index a2eb01c6b..000000000
--- a/extra/lapack/Pkgfile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Description: Linear Algebra PACKage
-# URL: http://www.netlib.org/lapack
-# Maintainer: NuTyX core team
-# Packager: lesibel at free dot fr
-# Depends on: blas
-# Run on: blas
-
-name=lapack
-version=3.2.1
-release=2
-source=(http://www.netlib.org/$name/$name-$version.tgz
- http://nutyx.meticul.eu/files/patchs/$name/{make.inc.archlinux,blas-link.patch})
-build() {
- cd $name-$version
- install -d $PKG/usr/lib
- cp $SRC/make.inc.archlinux make.inc
-
- # fix blas linking FS#13093
- patch -Np1 -i $SRC/blas-link.patch
- # Build with Position Independent Code (PIC) FS#12464 (i686), required for x86_64
- CFLAGS="${CFLAGS} -fPIC"
-
- make clean
- make lib OPTS="${CFLAGS}" NOOPT="${CFLAGS/-O?/-O0}"
- install -m755 *.so* $PKG/usr/lib/
- ln -sf liblapack.so.3 $PKG/usr/lib/liblapack.so
- ln -sf libtmglib.so.3 $PKG/usr/lib/libtmglib.so
- install -Dm644 $SRC/$name-$version/LICENSE $PKG/usr/share/licenses/$name/LICENSE
-}
-
-
-