blob: 10015c47cc3aa6c57db93f36623c40b3452beea3 (
plain)
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
33
34
35
36
|
#!/usr/bin/perl
use warnings;
use strict;
use ExtUtils::MakeMaker;
# Add a few more targets.
sub MY::postamble {
q{
all:: extra_build
clean:: extra_clean
install:: extra_install
pure_install:: extra_install
extra_build:
./ikiwiki doc html --templatedir=templates \
--wikiname="ikiwiki" --verbose --nosvn --exclude=/discussion
./mdwn2man doc/usage.mdwn > ikiwiki.man
extra_clean:
rm -rf html doc/.ikiwiki
rm -f ikiwiki.man
extra_install:
install -d $(PREFIX)/share/ikiwiki/templates
cp templates/* $(PREFIX)/share/ikiwiki/templates
install -d $(PREFIX)/share/ikiwiki/basewiki
cp -a basewiki/* $(PREFIX)/share/ikiwiki/basewiki
}
}
WriteMakefile(
'NAME' => 'IkiWiki',
'PM_FILTER' => 'grep -v "removed by Makefile"',
'EXE_FILES' => ['ikiwiki'],
);
|