- 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)
27 lines
1.0 KiB
BlitzBasic
27 lines
1.0 KiB
BlitzBasic
SUMMARY = "An Enhanced Printer Spooler"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-only | Artistic-1.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c6570d8d699af1883db9d0e733ac9bfb"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
|
|
file://0001-checkpc-Do-not-define-Mail_fd-multiple-times.patch \
|
|
"
|
|
SRC_URI[md5sum] = "5901bed95e61d2bea3ba3056056af432"
|
|
SRC_URI[sha256sum] = "694a1747a96385b89e93f43343bf35cee5c8c73353a83814106911c99f09de10"
|
|
|
|
inherit autotools gettext
|
|
|
|
EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost \
|
|
CHOWN=${base_bindir}/chown CHGRP=${base_bindir}/chgrp \
|
|
OPENSSL=${bindir}/openssl PRUTIL=${bindir}/pr"
|
|
FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug"
|
|
|
|
# configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it
|
|
export CLEAR = "no"
|
|
|
|
do_install:append() {
|
|
mv ${D}/etc/printcap.sample ${D}/etc/printcap
|
|
mv ${D}/etc/lpd/lpd.conf.sample ${D}/etc/lpd/lpd.conf
|
|
mv ${D}/etc/lpd/lpd.perms.sample ${D}/etc/lpd/lpd.perms
|
|
}
|