summaryrefslogtreecommitdiff
path: root/ext/dbase
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/dbase
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/dbase')
-rw-r--r--ext/dbase/package.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/ext/dbase/package.xml b/ext/dbase/package.xml
new file mode 100644
index 0000000000..f0a30a5a20
--- /dev/null
+++ b/ext/dbase/package.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE package SYSTEM "../pear/package.dtd">
+<package>
+ <name>dbase</name>
+ <summary>dBase database file access functions</summary>
+ <maintainers>
+ <maintainer>
+ <user>jimw</user>
+ <name>Jim Winstead</name>
+ <email>jimw@php.net</email>
+ <role>lead</role>
+ </maintainer>
+ </maintainers>
+ <description>
+These functions allow you to access records stored
+in dBase-format (dbf) databases.
+
+There is no support for indexes or memo fields.
+There is no support for locking, too.
+Two concurrent webserver processes modifying the
+same dBase file will very likely ruin your database.
+
+dBase files are simple sequential files of fixed length records.
+Records are appended to the end of the file and delete records
+are kept until you call dbase_pack().
+</description>
+ <license>PHP</license>
+ <release>
+ <state>beta</state>
+ <version>5.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="src" name="config.m4"/>
+ <file role="src" name="dbase.c"/>
+ <file role="src" name="dbf.h"/>
+ <file role="src" name="dbf_head.c"/>
+ <file role="src" name="dbf_head.h"/>
+ <file role="src" name="dbf_misc.c"/>
+ <file role="src" name="dbf_misc.h"/>
+ <file role="src" name="dbf_ndx.c"/>
+ <file role="src" name="dbf_ndx.h"/>
+ <file role="src" name="dbf_rec.c"/>
+ <file role="src" name="dbf_rec.h"/>
+ <file role="src" name="php_dbase.h"/>
+ </filelist>
+ <deps>
+ <dep type="php" rel="ge" version="5" />
+ </deps>
+ </release>
+</package>
+<!--
+vim:et:ts=1:sw=1
+-->