fix build
[pharext/pharext] / build / create-phar.php
1 <?php
2
3 /**
4 * Creates bin/pharext, invoked through the Makefile
5 */
6
7 set_include_path(dirname(__DIR__)."/src");
8 spl_autoload_register(function($c) {
9 return include strtr($c, "\\_", "//") . ".php";
10 });
11
12 $file = (new pharext\Task\PharBuild(null, pharext\Metadata::all() + [
13 "name" => "pharext",
14 "stub" => "pharext_packager.php",
15 "license" => file_get_contents(__DIR__."/../LICENSE")
16 ], false))->run();
17
18 if (getenv("SIGN")) {
19 $pass = (new pharext\Task\Askpass)->run();
20 $sign = new pharext\Task\PharSign($file, __DIR__."/pharext.key", $pass);
21 $pkey = $sign->run();
22 $pkey->exportPublicKey(__DIR__."/../bin/pharext.pubkey");
23 }
24
25 /* we do not need the extra logic of Task\PharRename */
26 rename($file, __DIR__."/../bin/pharext");