-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (28 loc) · 903 Bytes
/
Makefile.PL
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
# $Id: /mirror/youri/soft/core/trunk/Makefile.PL 1284 2006-11-06T19:46:28.041137Z guillomovitch $
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Youri::Package::RPM::Updater',
VERSION_FROM => 'lib/Youri/Package/RPM/Updater.pm',
AUTHOR => 'Youri project <[email protected]>',
PREREQ_PM => {
'Readonly' => 0,
'Youri::Package' => 0.002,
'DateTime' => 0,
'LWP::UserAgent' => 0,
'Test::Exception' => 0,
'SVN::Client' => 0,
'List::MoreUtils' => 0,
'YAML::AppConfig' => 0,
'version' => 0
}
);
sub MY::postamble {
return <<'EOF';
.PHONY: svntag
SVNPATH = svn+ssh://youri.zarb.org/home/projects/youri/svn/soft/Package-RPM-Updater
svntag:
svn copy -m 'new release $(VERSION)'\
$(SVNPATH)/trunk \
$(SVNPATH)/tags/release-$(VERSION)
EOF
}