mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-09 05:49:23 +00:00
513dcb0d08
Changelog: ============= - Document missing inline implementation. Fixed #1152 - Fix static analysis warnings for isDot() and remove deprecated APC support - Support for Laravel Collections style object chaining - Regex matches operator - Add support for Backed Enums Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
1.1 KiB
BlitzBasic
38 lines
1.1 KiB
BlitzBasic
SUMMARY = "Template engine for PHP"
|
|
DESCRIPTION = "\
|
|
Smarty facilitates the separation of presentation (HTML/CSS) from \
|
|
application logic. This implies that PHP code is application logic, and is \
|
|
separated from the presentation. \
|
|
"
|
|
HOMEPAGE = "https://smarty-php.github.io/smarty/"
|
|
BUGTRACKER = "https://github.com/smarty-php/smarty/issues"
|
|
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2c0f216b2120ffc367e20f2b56df51b3"
|
|
|
|
SRC_URI = "git://github.com/smarty-php/smarty.git;protocol=https;branch=master;tag=v${PV}"
|
|
|
|
SRCREV = "78d259d3b971c59a0cd719c270cc5cbb740c36a7"
|
|
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
# `make clean` removes files, they can't be rebuild with `make all`
|
|
CLEANBROKEN = "1"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install() {
|
|
install -d ${D}${datadir}/php/smarty3/libs/
|
|
install -m 0644 ${S}/libs/*.php ${D}${datadir}/php/smarty3/libs/
|
|
|
|
install -d ${D}${datadir}/php/smarty3/src/
|
|
cp -rf ${S}/src/* ${D}${datadir}/php/smarty3/src/
|
|
}
|
|
FILES:${PN} += "${datadir}/php/smarty3/"
|
|
|
|
RDEPENDS:${PN} = "php"
|
|
|
|
CVE_PRODUCT = "smarty:smarty smarty-php:smarty"
|