File: Makefile.PL

package info (click to toggle)
libogg-vorbis-decoder-perl 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,576 kB
  • ctags: 146
  • sloc: perl: 1,874; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $Id: Makefile.PL 10 1998-12-16 23:02:45Z daniel $

use inc::Module::Install;

name('Ogg-Vorbis-Decoder');
license('perl');
perl_version('5.005');
all_from('Decoder.pm');

if ($^O =~ /win32/i) {

	cc_lib_links(qw(ogg_static vorbis_static vorbisfile_static));

} else {

	cc_lib_links(qw(vorbisfile));
	cc_optimize_flags('-Wall');
}

auto_install();
WriteAll();