forked from mootools/mootools-more
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build
executable file
·40 lines (26 loc) · 832 Bytes
/
build
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
#!/usr/bin/env php
<?php
$stderr = fopen('php://stderr', 'w');
require dirname(__FILE__) . '/Packager/packager.php';
$executable = array_shift($argv);
$package = dirname(__FILE__);
$pkg = new Packager($package);
fwrite($stderr, "Packager is building MooTools More\n\n");
fwrite($stderr, "Included Components:\n");
$no_compat = false;
foreach ($argv as $arg){
if ($arg == '-1.2compat'){
array_erase($argv, $arg);
$no_compat = true;
break;
}
}
$files = (empty($argv)) ? $pkg->get_all_files() : $pkg->components_to_files($argv);
$files = $pkg->complete_files($files);
foreach ($files as $file){
fwrite($stderr, "- $file: [" . implode(", ", $pkg->get_file_provides($file)) . "]\n");
}
$output = $pkg->build($files, array(), array(), ($no_compat) ? array("1.2compat") : array());
echo $output;
fclose($stderr);
?>