Browse Source

HEADS UP, package.xml format change:

<file>foo.php</file> is now <file name="foo.php/>
Added tags for configure-like substitutions.
# the packager will handle both for a while
experimental/new_ui_api
Stig Bakken 25 years ago
parent
commit
6c00a56766
  1. 20
      pear/package.dtd

20
pear/package.dtd

@ -1,10 +1,10 @@
<!--
$Id: package.dtd,v 1.20 2002-04-01 14:15:30 ssb Exp $
$Id: package.dtd,v 1.21 2002-04-09 00:03:18 ssb Exp $
This is the PEAR package description, version 1.0b5.
This is the PEAR package description, version 1.0b6.
It should be used with the informal public identifier:
"-//PHP Group//DTD PEAR Package 1.0b5//EN//XML"
"-//PHP Group//DTD PEAR Package 1.0b6//EN//XML"
Copyright (c) 1997-2002 The PHP Group
@ -59,14 +59,22 @@
<!ATTLIST dir name CDATA #REQUIRED
baseinstalldir CDATA #IMPLIED>
<!ELEMENT file (#PCDATA)>
<!ATTLIST file role (php|ext|test|doc|data) 'php'
<!ELEMENT file (replace*)>
<!ATTLIST file role (php|ext|test|doc|data|script) 'php'
debug (na|on|off) 'na'
threaded (na|on|off) 'na'
format CDATA #IMPLIED
baseinstalldir CDATA #IMPLIED
platform CDATA #IMPLIED
md5sum CDATA #IMPLIED>
md5sum CDATA #IMPLIED
name CDATA #REQUIRED
replace (yes|no) 'no'
install-as CDATA #IMPLIED>
<!ELEMENT replace EMPTY>
<!ATTLIST replace from CDATA #REQUIRED
to CDATA #REQUIRED
type CDATA #REQUIRED>
<!ELEMENT libfile (libname|sources|includes|libadd)+>

Loading…
Cancel
Save