-
Notifications
You must be signed in to change notification settings - Fork 43
/
Makefile.PL
45 lines (40 loc) · 1 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
# requires Module::Install
# requires Module::Install::ReadmeFromPod
# requires Module::Install::Repository
# requires Module::Install::ShareFile
# requires Module::Install::CPANfile
use inc::Module::Install;
name 'GrowthForecast';
all_from 'lib/GrowthForecast.pm';
perl_version '5.008001';
readme_from 'growthforecast.pl';
cpanfile;
tests 't/*.t t/*/*.t';
install_script 'growthforecast.pl';
my @files = qw!
views/add_complex.tx
views/base.tx
views/docs.tx
views/edit.tx
views/edit_complex.tx
views/index.tx
views/list.tx
views/view.tx
views/view_graph.tx
public/css/bootstrap.min.css
public/favicon.ico
public/fonts/glyphicons-halflings-regular.eot
public/fonts/glyphicons-halflings-regular.svg
public/fonts/glyphicons-halflings-regular.ttf
public/fonts/glyphicons-halflings-regular.woff
public/js/bootstrap.min.js
public/js/jquery-1.10.2.min.js
public/js/jquery-1.10.2.min.map
public/js/jquery.storageapi.min.js
public/js/site.js
!;
for my $file ( @files ) {
install_sharefile $file;
}
auto_set_repository;
WriteAll;