all buildblocks moved one level up
This commit is contained in:
11
Libraries/giflib/build
Executable file
11
Libraries/giflib/build
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::set_build_dependencies "${COMPILER}"
|
||||
pbuild::make_all
|
||||
14
Libraries/giflib/modulefile
Normal file
14
Libraries/giflib/modulefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "library and utilities for processing GIFs"
|
||||
set url "http://sourceforge.net/projects/giflib/"
|
||||
set license "X Consortium-like open-source license"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
giflib is a library for reading and writing gif images. It is API and ABI
|
||||
compatible with libungif which was in wide use while the LZW compression
|
||||
algorithm was patented.
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
16
Libraries/gmp/build
Executable file
16
Libraries/gmp/build
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
--disable-shared \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
# use system gcc to compile
|
||||
declare -rx CC=gcc
|
||||
declare -rx CPP=/usr/bin/cpp
|
||||
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::make_all
|
||||
|
||||
16
Libraries/gmp/modulefile
Normal file
16
Libraries/gmp/modulefile
Normal file
@@ -0,0 +1,16 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "GNU Multiple Precision Arithmetic Library"
|
||||
set url "http://gmplib.org/"
|
||||
set license "GNU GPL v3 / GNU LGPL v3"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
GMP is a free library for arbitrary precision arithmetic, operating on
|
||||
signed integers, rational numbers, and floating-point numbers. There is
|
||||
no practical limit to the precision except the ones implied by the available
|
||||
memory in the machine GMP runs on. GMP has a rich set of functions, and the
|
||||
functions have a regular interface.
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
11
Libraries/libungif/build
Executable file
11
Libraries/libungif/build
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::set_build_dependencies "${COMPILER}"
|
||||
pbuild::make_all
|
||||
14
Libraries/libungif/modulefile
Normal file
14
Libraries/libungif/modulefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "library and utilities for processing GIFs"
|
||||
set url "http://sourceforge.net/projects/giflib/"
|
||||
set license "X Consortium-like open-source license"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
giflib is a library for reading and writing gif images. It is API and ABI
|
||||
compatible with libungif which was in wide use while the LZW compression
|
||||
algorithm was patented.
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
19
Libraries/mpc/build
Executable file
19
Libraries/mpc/build
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
--with-gmp=$GMP_PREFIX \
|
||||
--with-mpfr=$MPFR_PREFIX \
|
||||
--disable-shared \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
# use system gcc to compile
|
||||
declare -rx CC=gcc
|
||||
|
||||
module use 'Libraries'
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::set_build_dependencies 'gmp' 'mpfr'
|
||||
pbuild::make_all
|
||||
|
||||
13
Libraries/mpc/modulefile
Normal file
13
Libraries/mpc/modulefile
Normal file
@@ -0,0 +1,13 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "GNU Mpc"
|
||||
set url "http://www.multiprecision.org"
|
||||
set license "GNU LGPL v3"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
Gnu Mpc is a C library for the arithmetic of complex numbers with
|
||||
arbitrarily high precision and correct rounding of the result.
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
2
Libraries/mpc/with_modules-1.0.2
Normal file
2
Libraries/mpc/with_modules-1.0.2
Normal file
@@ -0,0 +1,2 @@
|
||||
gmp/5.1.1
|
||||
mpfr/3.1.2
|
||||
2
Libraries/mpc/with_modules-1.0.3
Normal file
2
Libraries/mpc/with_modules-1.0.3
Normal file
@@ -0,0 +1,2 @@
|
||||
gmp/6.0.0
|
||||
mpfr/3.1.3
|
||||
18
Libraries/mpfr/build
Executable file
18
Libraries/mpfr/build
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
--with-gmp=$GMP_PREFIX \
|
||||
--disable-shared \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
# use system gcc to compile
|
||||
declare -rx CC=gcc
|
||||
|
||||
module use 'Libraries'
|
||||
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::set_build_dependencies 'gmp'
|
||||
pbuild::make_all
|
||||
16
Libraries/mpfr/modulefile
Normal file
16
Libraries/mpfr/modulefile
Normal file
@@ -0,0 +1,16 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "GNU Multiple-Precision Floating-point library with correct Rounding"
|
||||
set url "http://www.mpfr.org/"
|
||||
set license "GNU GPL v3 / GNU LGPL v3"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
The main goal of MPFR is to provide a library for multiple-precision
|
||||
floating-point computation which is both efficient and has a well-
|
||||
defined semantics. It copies the good ideas from the ANSI/IEEE-754
|
||||
standard for double-precision floating-point arithmetic (53-bit
|
||||
significand).
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
1
Libraries/mpfr/with_modules-3.1.2
Normal file
1
Libraries/mpfr/with_modules-3.1.2
Normal file
@@ -0,0 +1 @@
|
||||
gmp/5.1.1
|
||||
1
Libraries/mpfr/with_modules-3.1.3
Normal file
1
Libraries/mpfr/with_modules-3.1.3
Normal file
@@ -0,0 +1 @@
|
||||
gmp/6.0.0
|
||||
11
Libraries/tiff/build
Executable file
11
Libraries/tiff/build
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env modbuild
|
||||
|
||||
pbuild::configure() {
|
||||
"${MODULE_SRCDIR}"/configure \
|
||||
--prefix="${PREFIX}" \
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::add_to_group 'Libraries'
|
||||
pbuild::set_build_dependencies "${COMPILER}"
|
||||
pbuild::make_all
|
||||
15
Libraries/tiff/modulefile
Normal file
15
Libraries/tiff/modulefile
Normal file
@@ -0,0 +1,15 @@
|
||||
#%Module1.0
|
||||
|
||||
set whatis "set of C functions that support the manipulation of TIFF image files."
|
||||
set url "http://www.libtiff.org/"
|
||||
set license "BSD-like, see: http://libtiff.org/misc.html"
|
||||
set maintainer "Achim Gsell <achim.gsell@psi.ch>"
|
||||
|
||||
set help "
|
||||
This software provides support for the Tag Image File Format (TIFF), a
|
||||
widely used format for storing image data. The latest version of the TIFF
|
||||
specification is available on-line in several different formats, as are a
|
||||
number of Technical Notes (TTN's).
|
||||
"
|
||||
|
||||
source $env(PSI_LIBMODULES)
|
||||
Reference in New Issue
Block a user