summaryrefslogtreecommitdiffstats
path: root/abs/not_built/extra/phpmyadmin/PKGBUILD
blob: f3b9be36ef5a24243e988d5d85cc21661f1b3e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# $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

}