- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
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
|
|
}
|