initial commit

This commit is contained in:
Chris Sewell
2012-11-28 03:55:08 -05:00
parent 7adb399b2e
commit cf140a2e97
3247 changed files with 492437 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<?php
/**
* @package pake
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @copyright 2004-2005 Fabien Potencier <fabien.potencier@symfony-project.com>
* @license see the LICENSE file included in the distribution
* @version SVN: $Id: pakePearTask.class.php 1791 2006-08-23 21:17:06Z fabien $
*/
class pakePearTask
{
public static function import_default_tasks()
{
pake_desc('create a PEAR package');
pake_task('pakePearTask::pear');
}
public static function run_pear($task, $args)
{
$results = pake_sh('pear package');
if ($task->is_verbose())
{
echo $results;
}
}
}