mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 19:50:50 +01:00
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PostgreSQL'
|
|
version = '9.5.2'
|
|
versionsuffix = '-Python-%(pyver)s'
|
|
|
|
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': 'intel', 'version': '2016a'}
|
|
|
|
osdependencies = [('openssl-devel', 'libssl-dev')]
|
|
|
|
dependencies = [
|
|
('libreadline', '6.3'),
|
|
('zlib', '1.2.8'),
|
|
('Python', '2.7.11'),
|
|
# ('OpenSSL', '1.0.1i'), # OS dependency should be preferred for security reasons
|
|
]
|
|
|
|
builddependencies = [
|
|
('Bison', '3.0.4'),
|
|
('flex', '2.6.0'),
|
|
('Perl', '5.22.1'),
|
|
]
|
|
|
|
configopts = '--with-python --with-openssl'
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/psql',
|
|
'bin/pg_config',
|
|
'lib/libpq.a',
|
|
'lib/libpq.%s' %
|
|
SHLIB_EXT],
|
|
'dirs': ['share/postgresql'],
|
|
}
|
|
|
|
moduleclass = 'data'
|