| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
make - create a package.xml from its source directoryIntroduction
This command creates a package.xml file from a standard PEAR2 directory layout, and then optionally creates a package release. This command looks for these standard files:
The CREDITS file must have this format: ;; comments ignored Maintainer One [handle1] <email@example.com> (role) Maintainer Two [handle2] <email@example.com> (role) Where role is one of lead, developer, contributor, or helper. The first line of README is used as the summary of the package, the rest is used as the description. RELEASE-X.Y.Z is used as the release notes. Pyrus will scan all release notes (such as RELEASE-1.0.0 and RELEASE-1.2.3) and use the most recent version number (1.2.3 in our example) as the version, and the contents of the file (RELEASE-1.2.3 in our example) as the release notes. API-X.Y.Z is used as notes about the API and the version X.Y.Z is used as the API version. --packagexmlsetupif --packagexmlsetup or -s is specified, it should be passed the name of a file in the package base directory that is used to fine-tune the generated package.xml. This file should work with variable $package for modifying the package.xml, and $compatible for the compatible one (if present). If --packagexmlsetup is not specified, and packagexmlsetup.php exists in the package base directory, it will be used. Here is an example packagexmlsetup.php:
<?php
--nocompatibleIf --nocompatible or -n option is passed in, Pyrus will not generate a package.xml that is compatible with the PEAR Installer. --packageThis option instruct the make command to pass off the finished package.xml to the package command. It accepts a comma-delimited list of file formats, and can be any of phar, tar, tgz or zip. --stubThis option is identical to the option for the --stub option of the package command, and is ignored if --package or -p is not also specified. --extrasetupThis option is identical to the option for the --extrasetup option of the package command, and is ignored if --package or -p is not also specified. |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「make - create a package.xml from its source directory」をGoogle検索
|