diff --git a/sql/phpMyAdmin/BUILD b/sql/phpMyAdmin/BUILD new file mode 100644 index 00000000000..00005e0aff9 --- /dev/null +++ b/sql/phpMyAdmin/BUILD @@ -0,0 +1,17 @@ +( + + if [ -f /var/phpMyAdmin/config.inc.php ]; then + cp /var/phpMyAdmin/config.inc.php /tmp/config.inc.php + fi && + + prepare_install && + mkdir -p /var/${MODULE} && + cp -av * /var/${MODULE}/ + + if [ -f /tmp/config.inc.php ]; then + cp /var/phpMyAdmin/config.inc.php /var/phpMyAdmin/config.inc.php.old && + cp /tmp/config.inc.php /var/phpMyAdmin/config.inc.php && + rm /tmp/config.inc.php + fi + +) > $C_FIFO 2>&1 diff --git a/sql/phpMyAdmin/DETAILS b/sql/phpMyAdmin/DETAILS new file mode 100644 index 00000000000..0a8839178fe --- /dev/null +++ b/sql/phpMyAdmin/DETAILS @@ -0,0 +1,20 @@ + MODULE=phpMyAdmin + VERSION=3.5.2 + RELEASE=$VERSION-all-languages + SOURCE=$MODULE-$RELEASE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$RELEASE + SOURCE_URL=$SFORGE_URL/phpmyadmin + SOURCE_VFY=sha1:d9bf32c12889c46a3e11e51b524db596da89332c + WEB_SITE=http://www.phpmyadmin.net/home_page + ENTERED=20040912 + UPDATED=20120712 + SHORT="A php web interface to administrate MySQL tables" + +cat << EOF +phpMyAdmin is a tool written in PHP intended to handle the +administration of MySQL over the Web. Currently it can create and drop +databases, create/drop/alter tables, delete/edit/add fields, execute +any SQL statement, manage keys on fields, manage privileges,export data +into various formats and is available in 47 languages. GPL License +information. +EOF