-
Notifications
You must be signed in to change notification settings - Fork 1
/
scan.php
executable file
·46 lines (41 loc) · 1.44 KB
/
scan.php
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
#!/usr/bin/php -q
<?php
/**
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @version 1.0
* @copyright Copyright: 2009-2010 Artem Prilutskiy.
* @author Artem Prilutskiy <[email protected]>
* @access public
* @package PHP Aptitude
*/
require_once("config.php");
require_once("packages.php");
function makeIndex($target)
{
if (defined("PACKAGES_INDEX_".$target))
{
echo "Scaning packages for architecture $target...\n";
$output = rescanPackages($target);
$file = constant("PACKAGES_INDEX_".$target);
echo "Saving index file $file...\n";
file_put_contents($file, $output);
}
}
echo "PHP Aptitude scan-packages\n";
foreach (split(",", PACKAGES_TARGET) as $target)
makeIndex($target);
echo "Done\n";
?>