diff options
Diffstat (limited to 'abs/extra/phpmyadmin/PKGBUILD')
-rw-r--r-- | abs/extra/phpmyadmin/PKGBUILD | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/abs/extra/phpmyadmin/PKGBUILD b/abs/extra/phpmyadmin/PKGBUILD deleted file mode 100644 index f3b9be3..0000000 --- a/abs/extra/phpmyadmin/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# $Id: PKGBUILD 34046 2010-12-01 14:03:04Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: tobias <tobias@archlinux.org> -# Committer: Manolis Tzanidakis <manolis@archlinux.org> -# Contributor: Simon Lackerbauer <calypso "at" strpg.org> - -pkgname=phpmyadmin -pkgver=3.3.8.1 -pkgrel=1 -pkgdesc="A PHP and hence web-based tool to administrate MySQL over the WWW" -arch=('any') -url="http://www.phpmyadmin.net" -license=('GPL') -depends=('mysql-clients' 'php') -optdepends=('libmcrypt: to use phpMyAdmin internal authentication' - 'python2') -backup=("etc/webapps/phpmyadmin/.htaccess" - "etc/webapps/phpmyadmin/config.inc.php") -source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/phpMyAdmin-$pkgver-all-languages.tar.bz2) -md5sums=('784b2534c443b1cb2328e3b97f0d2a36') - -build() { - _instdir=${startdir}/pkg/data/srv/httpd/htdocs/phpMyAdmin - mkdir -p ${_instdir} $pkgdir/etc/webapps/phpmyadmin - cd ${_instdir} - - cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* . -# echo "deny from all" >$pkgdir/etc/webapps/phpmyadmin/.htaccess - - ln -s /etc/webapps/phpmyadmin/.htaccess ${_instdir}/.htaccess - ln -s /etc/webapps/phpmyadmin/config.inc.php ${_instdir}/config.inc.php - cp ${_instdir}/config.sample.inc.php $pkgdir/etc/webapps/phpmyadmin/config.inc.php - cp ${_instdir}/config.sample.inc.php $pkgdir/etc/webapps/phpmyadmin/ - - # apache -# cat >$pkgdir/etc/webapps/phpmyadmin/apache.example.conf <<EOF -# Alias /phpmyadmin "/usr/share/webapps/phpMyAdmin" -# <Directory "/usr/share/webapps/phpMyAdmin"> -# AllowOverride All -# Options FollowSymlinks -# Order allow,deny -# Allow from all -# </Directory> -#EOF - -} - - |