-
Notifications
You must be signed in to change notification settings - Fork 26
/
Makefile.PL
79 lines (74 loc) · 2.27 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env perl
# IMPORTANT: if you delete this file your app will not work as
# expected. You have been warned.
use inc::Module::Install 1.02;
use Module::Install::Catalyst; # Complain loudly if you don't have
# Catalyst::Devel installed or haven't said
# 'make dist' to create a standalone tarball.
# if there are symlinks and it's dying
# *ExtUtils::Manifest::manicheck = sub { return };
# https://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues/5
name 'AmuseWikiFarm';
license 'perl';
all_from 'lib/AmuseWikiFarm.pm';
do './cpanfile';
# locations where we store the stuff
catalyst_ignore('repo',
'shared',
'xapian',
'local',
'staging',
'opt',
'bbfiles',
'var',
'design',
'cpanfile',
'cpanfile\.snapshot',
'bootstrap-amw',
'current_version_is_.*txt',
'dbic\..*',
# hidden files
'\..*',
'restart',
'.*\.patch',
'Dockerfile',
'fontspec\.json.*',
'tmp',
'cover_db',
'log',
'.*\.log',
'cronjobs',
'.*local\.conf',
'ext-src',
'thumbnails',
'webfonts',
'doc',
'init-.*',
'upgrade-from-git\.sh',
'.*\.txt',
'\.git.*',
'Maildir',
'MANIFEST.*',
'LICENSE',
'Makefile.*',
'.*\.db',
'.*\.db-journal',
'*.aux',
'*.toc',
'AmuseWikiFarm.*',
'stock_files',
'font-preview',
'db_backups',
'.*\.lock',
'.*\.example',
'fontspec.json',
'ssl',
'CONTRIBUTING.md',
'MYMETA.json',
'MYMETA.yml',
'README.mdwn',
'Vagrantfile');
catalyst;
install_script glob('script/amusewiki-*');
auto_install;
WriteAll;