File: Makefile.PL

package info (click to toggle)
audio-cd 0.05-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 96 kB
  • ctags: 17
  • sloc: ansic: 227; makefile: 49; perl: 25
file content (22 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use 5.005;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'	=> 'Audio::CD',
    'VERSION_FROM' => 'CD.pm',
    'macro' => {
	  CVSROOT => 'modperl.com:/local/cvs_repository',
    },
    'LIBS'	=> ["-lcdaudio"],
    DEFINE => '-g',
    OBJECT => 'cddb_lookup.o CD.o',
);

sub MY::postamble { 
    return <<'EOF'; 

cvs_tag :
	cvs -d $(CVSROOT) tag v$(VERSION_SYM) . 
	@echo update CD.pm VERSION now 
EOF
}