summaryrefslogtreecommitdiff
path: root/ext/w32api/package.xml
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2004-03-23 19:46:10 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2004-03-23 19:46:10 +0000
commiteeb172b29f65b9a340638b7096b6dd82399b4562 (patch)
treea10ba860254a453537a2f6fef55ab9a01abbc235 /ext/w32api/package.xml
parent82e2b354ac8d2df5643b50c432bde5ad0edac8db (diff)
downloadphp-git-eeb172b29f65b9a340638b7096b6dd82399b4562.tar.gz
"The Visa to Sibiria" (work in progress)
Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
Diffstat (limited to 'ext/w32api/package.xml')
-rw-r--r--ext/w32api/package.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/ext/w32api/package.xml b/ext/w32api/package.xml
new file mode 100644
index 0000000000..ddcbdb022a
--- /dev/null
+++ b/ext/w32api/package.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE package SYSTEM "../pear/package.dtd">
+<package>
+ <name>w32api</name>
+ <summary>Win32 and DLL API interface functions</summary>
+ <maintainers>
+ <maintainer>
+ <user>jmoore</user>
+ <name>James Moore</name>
+ <email>jmoore@php.net</email>
+ <role>lead</role>
+ </maintainer>
+ </maintainers>
+ <description>
+This extension is a generic extension API to DLLs.
+This was originally written to allow access to the Win32 API from PHP,
+although you can also access other functions exported via other DLLs.
+ </description>
+ <license>PHP</license>
+ <release>
+ <state>beta</state>
+ <version>5.0.0rc1</version>
+ <date>2004-03-19</date>
+ <notes>
+package.xml added to support intallation using pear installer
+ </notes>
+ <filelist>
+ <file role="doc" name="CREDITS"/>
+ <file role="doc" name="README"/>
+ <file role="doc" name="TODO"/>
+ <file role="src" name="w32api.dsp"/>
+ <file role="src" name="w32api.c"/>
+ <file role="src" name="w32api_function_definition_parser.y"/>
+ <file role="src" name="w32api_function_definition_scanner.l"/>
+ <file role="src" name="w32api_type_definition_parser.y"/>
+ <file role="src" name="w32api_type_definition_scanner.l"/>
+ <file role="src" name="php_w32api.h"/>
+ </filelist>
+ <deps>
+ <dep type="php" rel="ge" version="5" />
+ <!-- doesn't work yet <dep type="os" rel="has" name="windows"/> -->
+ </deps>
+ </release>
+</package>
+<!--
+vim:et:ts=1:sw=1
+-->