mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
21f956598d
* Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
23 lines
778 B
BlitzBasic
23 lines
778 B
BlitzBasic
SUMMARY = "The squish library (abbreviated to libsquish) is an open source DXT compression library written in C++ "
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://alpha.cpp;beginline=3;endline=22;md5=6665e479f71feb92d590ea9ae9b9f6d5"
|
|
|
|
PV = "1.10+git"
|
|
|
|
SRCREV = "52e7d93c5947f72380521116c05d97c528863ba8"
|
|
SRC_URI = "git://github.com/OpenELEC/libsquish.git;protocol=https;branch=master \
|
|
file://0001-Add-support-for-variable-libdir.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "INSTALL_DIR=${D}${prefix} LIBDIR_SUFFIX=${@d.getVar('baselib').replace('lib', '')} \
|
|
${@bb.utils.contains('TUNE_FEATURES', 'altivec', 'USE_ALTIVEC=1', '', d)}"
|
|
|
|
do_install() {
|
|
install -d ${D}${includedir}
|
|
install -d ${D}${libdir}/pkgconfig
|
|
oe_runmake install
|
|
}
|