xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/beep/beep_1.4.9.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "beep allows you to have the PC speaker issue beeps and beep patterns"
2DESCRIPTION = "beep allows you to have the PC speaker issue beeps and beep \
3patterns with given frequencies, durations, and spacing."
4HOMEPAGE = "https://github.com/spkr-beep/beep"
5BUGTRACKER = "https://github.com/spkr-beep/beep/issues"
6
7LICENSE = "GPL-2.0-or-later"
8LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
9
10SRC_URI = "git://github.com/spkr-beep/beep.git;protocol=https;branch=master \
11           file://0001-Do-not-use-Werror-as-it-fails-with-newer-clang-11.patch \
12"
13SRCREV = "8b85ddd09f73b9fd7caa5679298781a57af194ac"
14S = "${WORKDIR}/git"
15
16EXTRA_OEMAKE = " \
17    COMPILER_gcc='${CC}' \
18    LINKER_gcc='${CC}' \
19    COMPILER_clang=no \
20    LINKER_clang=no \
21"
22
23EXTRA_OEMAKE:toolchain-clang = " \
24    COMPILER_clang='${CC}' \
25    LINKER_clang='${CC}' \
26    COMPILER_gcc=no \
27    LINKER_gcc=no \
28"
29
30do_install() {
31    oe_runmake install DESTDIR='${D}'
32}
33