NAME

mbxilinx - Generate the Module::Xilinx::Build script by using YAML instead of having to write Build.PL

VERSION

0.13

USAGE

mbxilinx <build.yml>

THE YAML FILE

The YAML file required here may be titled build.yml or could be anything else. By default if you just run mbxilinx without any arguments it will look for build.yml in the current directory or fail.

A sample build.yml is present in the share/example directory in the source code which we shall reproduce here

---
dist_name: dflipflops
dist_version: '0.01'
dist_author: 'Vikas N Kumar <vikas@cpan.org>'
dist_abstract: 'This is a test'
proj_params:
    family: spartan3a
    device: xc3s700a
    package: fg484
    speed: -4
    language: VHDL

The mbxilinx program using the App::mbxilinx module just parses the input YAML file and then calls Module::Build::Xilinx to create the Build script for use by the user as given in the Module::Build::Xilinx documentation.

SEE ALSO

Module::Build::Xilinx, App::mbxilinx

AUTHOR

Vikas Kumar, <vikas@cpan.org>

CONTACT

Find me on IRC: #hardware on irc://irc.perl.org as user name vicash.

COPYRIGHT AND LICENSE

Copyright (C) 2014 by Vikas Kumar

This library is under the MIT license. Please refer the LICENSE file for more information provided with the distribution.