- 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)
30 lines
1000 B
BlitzBasic
30 lines
1000 B
BlitzBasic
require links.inc
|
|
|
|
DEPENDS += "virtual/libx11"
|
|
RCONFLICTS:${PN} = "links"
|
|
|
|
inherit features_check
|
|
# depends on virtual/libx11
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
SRC_URI += " file://links2.desktop \
|
|
http://www.xora.org.uk/oe/links2.png;name=icon"
|
|
|
|
SRC_URI[sha256sum] = "f05b3577f25dbe63e491c424f0ecb31f7bfadce9b2bc2f111dfed049c004c9cb"
|
|
SRC_URI[icon.sha256sum] = "eddcd8b8c8698aa621d1a453943892d77b72ed492e0d14e0dbac5c6a57e52f47"
|
|
|
|
S = "${WORKDIR}/links-${PV}"
|
|
|
|
EXTRA_OECONF = "--enable-graphics \
|
|
--with-ssl=${STAGING_LIBDIR}/.. --with-libjpeg \
|
|
--without-libtiff --without-svgalib --without-fb \
|
|
--without-directfb --without-pmshell --without-atheos \
|
|
--with-x --without-gpm"
|
|
|
|
do_install:append() {
|
|
install -d ${D}/${datadir}/applications
|
|
install -m 0644 ${WORKDIR}/links2.desktop ${D}/${datadir}/applications
|
|
install -d ${D}/${datadir}/pixmaps
|
|
install -m 0644 ${WORKDIR}/links2.png ${D}/${datadir}/pixmaps
|
|
}
|