Typo with - sign in constant. Causing constants to not be loaded correctly
[sdlgit/SDL_perl.git] / Build.PL
CommitLineData
8fde61e3 1#! perl -w
2#
3# Copyright (C) 2003 chromatic
4# Copyright (C) 2004 David J. Goehrig
1eb6d3ca 5# Copyright (C) 2009 Kartik Thakore
8fde61e3 6
7use strict;
8
9use lib 'make/lib';
10
11use SDL::Build;
12use YAML;
789195af 13use YAML::Node;
8fde61e3 14
15my $sdl_compile_flags = `sdl-config --cflags`;
16my $sdl_link_flags = `sdl-config --libs`;
17
18if ($? >> 8)
19{
20 die "SDL doesn't appear to be installed.\n" .
21 "Please check that sdl-config is in your path and try again.\n";
22}
23
24chomp( $sdl_compile_flags );
25chomp( $sdl_link_flags );
26
27# subsystem to build
28# file
29# location of source file => location of build file to get name right
30# libraries
31# name of shared library (soname)
32# preprocessor definition
33# name of header file
34my %subsystems =
35(
36 SDL => {
37 file => {
38 from => 'src/SDL.xs',
c84dba46 39 to => './SDL_perl.xs',
8fde61e3 40 },
41 libraries => [qw( SDL SDL_image SDL_mixer SDL_net SDL_ttf SDL_gfx
42 png jpeg smpeg )],
43 },
44 OpenGL => {
45 file => {
46 from => 'src/OpenGL.xs',
b13012a4 47 to => 'SDL/OpenGL.xs',
8fde61e3 48 },
49 libraries => [qw( SDL GL GLU )],
50 },
51 SFont => {
52 file => {
53 from => 'src/SFont.xs',
b13012a4 54 to => 'SDL/SFont.xs',
8fde61e3 55 },
56 libraries => [qw( SDL SDL_image )],
57 },
58);
59
60my %libraries = (
61 SDL => {
62 define => 'HAVE_SDL',
63 header => 'SDL.h',
64 },
65 SDL_image => {
66 define => 'HAVE_SDL_IMAGE',
67 header => 'SDL_image.h'
68 },
69 SDL_mixer => {
70 define => 'HAVE_SDL_MIXER',
71 header => 'SDL_mixer.h'
72 },
73 SDL_net => {
74 define => 'HAVE_SDL_NET',
75 header => 'SDL_net.h'
76 },
77 SDL_ttf => {
78 define => 'HAVE_SDL_TTF',
79 header => 'SDL_ttf.h'
80 },
81 SDL_gfx => {
82 define => 'HAVE_SDL_GFX',
83 header => 'SDL_gfxPrimitives.h'
84 },
85 png => {
86 define => 'HAVE_PNG',
87 header => 'png.h',
88 },
89 jpeg => {
90 define => 'HAVE_JPEG',
91 header => 'jpeglib.h',
92 },
93 smpeg => {
94 define => 'HAVE_SMPEG',
95 header => 'smpeg.h',
96 },
97 GL => {
98 define => 'HAVE_GL',
99 header => 'gl.h'
100 },
101 GLU => {
102 define => 'HAVE_GLU',
103 header => 'glu.h'
104 },
105);
106
107# need the platform-specific module to find include paths correctly
108# see build/lib/SDL/Build/*pm
109my $arch = SDL::Build->get_arch( $^O );
110
111# see which subsystems can be built -- do we have headers for them?
112my $build_systems = $arch->find_subsystems( \%subsystems, \%libraries );
113
114# now write SDL::Config
115$arch->write_sdl_config( $build_systems );
116
117# and fetch all of the information needed to compile
118my $defines = $arch->build_defines( \%libraries, $build_systems );
119my $includes = $arch->build_includes( \%libraries, $build_systems );
120my $links = $arch->build_links( \%libraries, $build_systems );
121
122# mangle the compilable files into a format Module::Build can understand
123my %xs = map { $subsystems{$_}{file}{from} => $subsystems{$_}{file}{to} }
124 keys %subsystems;
8fde61e3 125my $build = SDL::Build->new(
c6a7b1aa 126 module_name => 'SDL',
8fde61e3 127 dist_name => 'SDL_Perl',
128 license => 'lgpl',
129 dist_version_from => 'lib/SDL.pm',
130 build_requires =>
131 {
132 'Test::Simple' => '0.47',
133 'Module::Build' => '0.22',
134 },
135 build_recommends =>
136 {
137 'Pod::ToDemo' => '0.20',
138 },
e00a4871 139 c_source => 'src',
8fde61e3 140 xs_files => \%xs,
141 dist_author => 'David J. Goehrig <DGOEHRIG@cpan.org>',
142);
143
144# and here's where the real (and ugly) magic works... see SDL::Build
145$build->set_flags(
146 \%subsystems,
147 $build_systems,
148 $defines,
149 $includes,
150 $links,
151 $sdl_compile_flags,
152 $sdl_link_flags,
153);
154
155# now we're ready to go!
156$build->create_build_script();