-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
65 lines (40 loc) · 1.44 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
NAME
Alien::UnicornEngine - Perl extension to install Unicorn-Engine from
www.unicorn-engine.org
SYNOPSIS
Alien::UnicornEngine is a perl module that enables the installation of
the open source disassembly library Unicorn-Engine from
http://www.unicorn-engine.org on the system or locate the existing
installation if any. It is currently setup to use the Github master
branch.
You can use it in the Build.PL file if you're using Module::Build or
Makefile.PL file if you're using ExtUtils::MakeMaker.
my $unicorn= Alien::UnicornEngine->new;
my $build = Module::Build->new(
...
extra_compiler_flags => $unicorn->cflags(),
extra_linker_flags => $unicorn->libs(),
...
);
VERSION
0.04
METHODS
new
Creates the object. Refer Alien::Base for more information.
cflags
This method provides the compiler flags needed to use the library on
the system.
libs
This method provides the linker flags needed to use the library on
the system.
SEE ALSO
Alien::Base
AUTHORS
Vikas N Kumar <[email protected]>
REPOSITORY
https://github.com/selectiveintellect/p5-alien-unicorn.git
COPYRIGHT
Copyright (C) 2016. Selective Intellect LLC
<[email protected]>. All Rights Reserved.
LICENSE
This is free software under the MIT license.