summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb')
-rw-r--r--meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb41
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb
new file mode 100644
index 0000000000..7d814abd56
--- /dev/null
+++ b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_5.1.2.bb
@@ -0,0 +1,41 @@
1SUMMARY = "Web-based MySQL administration interface"
2HOMEPAGE = "http://www.phpmyadmin.net"
3# Main code is GPLv2, vendor/tecnickcom/tcpdf is under LGPLv3, js/jquery is under MIT
4LICENSE = "GPLv2 & LGPLv3 & MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
6 file://vendor/tecnickcom/tcpdf/LICENSE.TXT;md5=dd6470bbcd3436ca317f82d34abaf688 \
7 file://js/vendor/jquery/MIT-LICENSE.txt;md5=de877aa6d744cc160ff41c26a8e4811f \
8"
9
10SRC_URI = "https://files.phpmyadmin.net/phpMyAdmin/${PV}/phpMyAdmin-${PV}-all-languages.tar.xz \
11 file://apache.conf \
12"
13
14SRC_URI[md5sum] = "1e6e0c1a15e3c6e7c8771faef19edfa5"
15SRC_URI[sha256sum] = "3aaaa86ded6308f511f67a907c0d7d6096e1dc2a8ae05581ba55a2510abde1e4"
16
17UPSTREAM_CHECK_URI = "https://www.phpmyadmin.net/downloads/"
18UPSTREAM_CHECK_REGEX = "phpMyAdmin-(?P<pver>\d+(\.\d+)+)-all-languages.tar.xz"
19
20S = "${WORKDIR}/phpMyAdmin-${PV}-all-languages"
21
22inherit allarch
23
24do_install() {
25 install -d ${D}${datadir}/${BPN}
26 cp -R --no-dereference --preserve=mode,links -v * ${D}${datadir}/${BPN}
27 chown -R root:root ${D}${datadir}/${BPN}
28 # Don't install patches to target
29 rm -rf ${D}${datadir}/${BPN}/patches
30
31 install -d ${D}${sysconfdir}/apache2/conf.d
32 install -m 0644 ${WORKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf
33
34 # Remove a few scripts that explicitly require bash (!)
35 rm -f ${D}${datadir}/phpmyadmin/libraries/transformations/*.sh
36}
37
38FILES:${PN} = "${datadir}/${BPN} \
39 ${sysconfdir}/apache2/conf.d"
40
41RDEPENDS:${PN} += "bash php-cli"