homebrew-core/Formula/phpmyadmin.rb
BePsvPT 14b511a99b
phpmyadmin 4.8.5
Closes #36397.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-01-26 13:59:24 +08:00

43 lines
1.3 KiB
Ruby

class Phpmyadmin < Formula
desc "Web interface for MySQL and MariaDB"
homepage "https://www.phpmyadmin.net"
url "https://files.phpmyadmin.net/phpMyAdmin/4.8.5/phpMyAdmin-4.8.5-all-languages.tar.gz"
sha256 "ed55089538b7a652dd571e3d4336e0e8769990f06f14fca9d6a55965f4a27d43"
bottle :unneeded
depends_on "php" => :test
def install
pkgshare.install Dir["*"]
etc.install pkgshare/"config.sample.inc.php" => "phpmyadmin.config.inc.php"
ln_s etc/"phpmyadmin.config.inc.php", pkgshare/"config.inc.php"
end
def caveats; <<~EOS
To enable phpMyAdmin in Apache, add the following to httpd.conf and
restart Apache:
Alias /phpmyadmin #{HOMEBREW_PREFIX}/share/phpmyadmin
<Directory #{HOMEBREW_PREFIX}/share/phpmyadmin/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
Then open http://localhost/phpmyadmin
The configuration file is #{etc}/phpmyadmin.config.inc.php
EOS
end
test do
cd pkgshare do
assert_match "German", shell_output("php #{pkgshare}/index.php")
end
end
end