mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
33 lines
945 B
BlitzBasic
33 lines
945 B
BlitzBasic
SUMMARY = "beep allows you to have the PC speaker issue beeps and beep patterns"
|
|
DESCRIPTION = "beep allows you to have the PC speaker issue beeps and beep \
|
|
patterns with given frequencies, durations, and spacing."
|
|
HOMEPAGE = "https://github.com/spkr-beep/beep"
|
|
BUGTRACKER = "https://github.com/spkr-beep/beep/issues"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://github.com/spkr-beep/beep.git;protocol=https \
|
|
file://0001-Do-not-use-Werror-as-it-fails-with-newer-clang-11.patch \
|
|
"
|
|
SRCREV = "8b85ddd09f73b9fd7caa5679298781a57af194ac"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = " \
|
|
COMPILER_gcc='${CC}' \
|
|
LINKER_gcc='${CC}' \
|
|
COMPILER_clang=no \
|
|
LINKER_clang=no \
|
|
"
|
|
|
|
EXTRA_OEMAKE:toolchain-clang = " \
|
|
COMPILER_clang='${CC}' \
|
|
LINKER_clang='${CC}' \
|
|
COMPILER_gcc=no \
|
|
LINKER_gcc=no \
|
|
"
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR='${D}'
|
|
}
|