mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
The previous version 1.2.2 of beep was provided by http://johnath.com/beep and was released in 2002. The latest version 1.3 was released 2010-07-13. On https://github.com/johnath/beep the development stopped 2013-02-07. In 2018 a developer worked on fixing CVE-2018-1000532 and realized that fixing this would be more than just a simple patch. Because the original repository was unmaintained for several years he created https://github.com/spkr-beep/beep as the new home for beep. Debian switched to the new beep with Buster. https://packages.debian.org/buster/beep Alpine 3.11, Arch Linux, Fedora, and Ubuntu 20.04 also switched to the same new beep. Fix build with clang Signed-off-by: Mark Jonas <toertel@gmail.com> Signed-off-by: Khem Raj <raj.khem@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}'
|
|
}
|