-
-
03 Apr 2022 12:09:33 UTC
- Distribution: Alien-nasm
- Module version: 0.23
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (311 / 2 / 0)
- Kwalitee
Bus factor: 1- 77.78% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (16.71KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Alien::Base
- Capture::Tiny
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Alien::nasm - Find or build nasm, the netwide assembler
VERSION
version 0.23
SYNOPSIS
From your Perl script:
use Alien::nasm (); use Env qw( @PATH ); unshift @ENV, Alien::nasm->bin_dir; system 'nasm', ...;
From alienfile:
use alienfile; share { requires 'Alien::nasm'; build [ '%{nasm} ...', ]; };
DESCRIPTION
This Alien module provides Netwide Assembler (NASM).
This class is a subclass of Alien::Base, so all of the methods documented there should work with this class.
HELPERS
nasm
%{nasm}
Returns the name of the nasm executable.
ndisasm
%{ndisasm}
Returns the name of the ndisasm executable.
AUTHOR
Graham Ollis <plicease@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017-2022 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install Alien::nasm, copy and paste the appropriate command in to your terminal.
cpanm Alien::nasm
perl -MCPAN -e shell install Alien::nasm
For more information on module installation, please visit the detailed CPAN module installation guide.