-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
67 lines (42 loc) · 1.49 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
65
66
NAME
Alien::Keystone - Perl extension to install Keystone-Engine from
www.keystone-engine.org
SYNOPSIS
Alien::Keystone is a perl module that enables the installation of the
open source disassembly library Keystone-Engine from
http://www.keystone-engine.org on the system or locate the existing
installation if any. It is currently setup to look for the Github
master.
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.
use Alien::Keystone;
# ...
my $keystone= Alien::Keystone->new;
my $build = Module::Build->new(
...
extra_compiler_flags => $keystone->cflags(),
extra_linker_flags => $keystone->libs(),
...
);
VERSION
0.03
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-keystone.git
COPYRIGHT
Copyright (C) 2016. Selective Intellect LLC
<[email protected]>. All Rights Reserved.
LICENSE
This is free software under the MIT license.