-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
48 lines (34 loc) · 1.05 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
NAME
Alien::Chipmunk - Alien package for the Chipmunk Physics library
SYNOPSIS
use Module::Build;
use Alien::Chipmunk;
my $alien = Alien::Chipmunk->new;
my $builder = Module::Build->new(
module_name => 'Some::Library::Chipmunk',
# ...
configure_requires => {
'Alien::Chipmunk' => 0,
# ...
},
build_requires => {
'Alien::Chipmunk' => 0
# ...
},
extra_compiler_flags => $alien->cflags,
extra_linker_flags => $alien->libs,
);
$builder->create_build_script();
DESCRIPTION
Alien::Chipmunk installs and downloads the Chipmunk Physics library.
SEE ALSO
* Alien
* Alien::Base
* Chipmunk
AUTHORS
Jeffrey T. Palmer <[email protected]>
Graham Ollis <[email protected]>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2015 by Jeffrey T. Palmer.
This is free software, licensed under:
The MIT (X11) License