- 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)
22 lines
759 B
BlitzBasic
22 lines
759 B
BlitzBasic
SUMMARY = "Library for reading mod-like audio files"
|
|
HOMEPAGE = "http://modplug-xmms.sf.net"
|
|
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c9182faa1f7c316f7b97d404bcbe3685"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/modplug-xmms/libmodplug-${PV}.tar.gz \
|
|
file://0001-fastmix-Drop-register-storage-class-keyword.patch"
|
|
|
|
SRC_URI[sha256sum] = "457ca5a6c179656d66c01505c0d95fafaead4329b9dbaa0f997d00a3508ad9de"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-option-checking"
|
|
|
|
# NOTE: autotools_stage_all does nothing here, we need to do it manually
|
|
do_install:append() {
|
|
install -d ${D}${includedir}/libmodplug
|
|
install -m 0644 ${S}/src/modplug.h ${D}${includedir}/libmodplug
|
|
install -m 0644 ${S}/src/modplug.h ${D}${includedir}/
|
|
}
|