mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00

new file: l/libMesh/libMesh-1.3.0-intel-2017c.eb new file: p/Perl/Perl-5.28.1-GCC-6.3.0-2.27.eb new file: p/PostgreSQL/PostgreSQL-11.3-Py-2.7.eb new file: p/phonopy/phonopy-2.1.3-Py-3.6.eb new file: s/scipy/scipy-1.3.0-Py-3.6.eb modified: x/XCrySDen/XCrySDen-1.5.60-intel-2017a.eb
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PostgreSQL'
|
|
version = '11.3'
|
|
|
|
homepage = 'http://www.mysql.com/'
|
|
description = """PostgreSQL is a powerful, open source object-relational database system.
|
|
It is fully ACID compliant, has full support for foreign keys,
|
|
joins, views, triggers, and stored procedures (in multiple languages).
|
|
It includes most SQL:2008 data types, including INTEGER,
|
|
NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP.
|
|
It also supports storage of binary large objects, including pictures,
|
|
sounds, or video. It has native programming interfaces for C/C++, Java,
|
|
.Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation."""
|
|
|
|
source_urls = ['http://ftp.postgresql.org/pub/source/v%(version)s/']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
toolchain = {'name': 'Py', 'version': '2.7'}
|
|
|
|
osdependencies = [('openssl-devel', 'libssl-dev')]
|
|
|
|
dependencies = [
|
|
('libreadline', '8.0', '', True),
|
|
('zlib', '1.2.11', '', True),
|
|
]
|
|
|
|
builddependencies = [
|
|
('Bison', '3.0.5', '', True),
|
|
('flex', '2.6.4', '', True),
|
|
('Perl', '5.28.1', '-GCC-6.3.0-2.27', True),
|
|
]
|
|
|
|
configopts = '--with-python --with-openssl --disable-thread-safety'
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/psql',
|
|
'bin/pg_config',
|
|
'lib/libpq.a',
|
|
'lib/libpq.%s' %
|
|
SHLIB_EXT],
|
|
'dirs': ['share/postgresql'],
|
|
}
|
|
|
|
moduleclass = 'data'
|