Skip to content

Commit

Permalink
phpMyAdmin: readd it to the moonbase. version bumped to 3.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
florin65 committed Jul 12, 2012
1 parent 2d710b7 commit f42f332
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 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
20 changes: 20 additions & 0 deletions 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

0 comments on commit f42f332

Please sign in to comment.