mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 02:12:12 +01:00
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
##
|
|
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
|
#
|
|
# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine
|
|
# Authors:: Fotis Georgatos <fotis.georgatos@uni.lu>
|
|
# License:: MIT/GPL
|
|
# $Id$
|
|
#
|
|
# This work implements a part of the HPCBIOS project and is a component of the policy:
|
|
# http://hpcbios.readthedocs.org/en/latest/
|
|
##
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'SQLite'
|
|
version = '3.8.4.1'
|
|
|
|
homepage = 'http://www.hwaci.com/sw/sqlite/'
|
|
description = "SQLite: SQL Database Engine in a C Library"
|
|
|
|
# eg. http://www.hwaci.com/sw/sqlite/2013/sqlite-autoconf-3080100.tar.gz
|
|
source_urls = ['http://www.hwaci.com/sw/sqlite/2014']
|
|
sources = ['sqlite-autoconf-%s0%s0%s0%s.tar.gz' % tuple(version.split('.'))] # very weird way to calculate your filename
|
|
|
|
toolchain = {'name': 'goolf', 'version': '1.4.10'}
|
|
|
|
dependencies = [
|
|
('libreadline', '6.2'),
|
|
('Tcl', '8.6.1'),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/sqlite3'],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'devel'
|