Last change
on this file since 522 was
522,
checked in by Sam Hocevar, 17 years ago
|
- Changed the licensing to WTFPL, as per all copyright holders' permission.
|
File size:
416 bytes
|
Line | |
---|
1 | use Module::Build; |
---|
2 | |
---|
3 | my $builder = Module::Build->new ( |
---|
4 | module_name => 'Term::Caca', |
---|
5 | license => 'wtfpl', |
---|
6 | |
---|
7 | requires => { |
---|
8 | }, |
---|
9 | |
---|
10 | build_requires => { |
---|
11 | 'Test::More' => 0, |
---|
12 | }, |
---|
13 | |
---|
14 | script_files => [ |
---|
15 | ], |
---|
16 | |
---|
17 | extra_compiler_flags => scalar `caca-config --cflags`, |
---|
18 | extra_linker_flags => scalar `caca-config --libs`, |
---|
19 | create_makefile_pl => 'passthrough', |
---|
20 | ); |
---|
21 | |
---|
22 | $builder->create_build_script(); |
---|
Note: See
TracBrowser
for help on using the repository browser.