## # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild # # Copyright:: Copyright 2013 Uni.Lu/LCSB # Authors:: Nils Christian # License:: MIT/GPL # $Id$ # ## easyblock = 'PerlModule' name = 'YAML-Syck' version = '1.27' homepage = 'http://search.cpan.org/perldoc?YAML%3A%3ASyck' description = """Fast, lightweight YAML loader and dumper. This module provides a Perl interface to the libsyck data serialization library.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} source_urls = ['http://www.cpan.org/modules/by-module/YAML'] sources = [SOURCE_TAR_GZ] local_perl = 'Perl' local_perlver = '5.16.3' local_perlverextra = '' versionsuffix = '-%s-%s%s' % (local_perl, local_perlver, local_perlverextra) dependencies = [ (local_perl, local_perlver, local_perlverextra), ] options = {'modulename': 'YAML::Syck'} local_perlmajver = local_perlver.split('.')[0] sanity_check_paths = { 'files': [], 'dirs': [ 'lib/local_perl%s/site_perl/%s/x86_64-linux-thread-multi/YAML' % (local_perlmajver, local_perlver)], } moduleclass = 'data'