mirror of
https://codeberg.org/flk/meta-wayland.git
synced 2025-07-13 06:24:28 +02:00
drop '_git' from recipes
This commit is contained in:
17
recipes-devtools/stb/stb.bb
Normal file
17
recipes-devtools/stb/stb.bb
Normal file
@ -0,0 +1,17 @@
|
||||
SUMMARY = "stb is a set of single-file libraries for C/C++"
|
||||
HOMEPAGE = "https://github.com/nothings/stb"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=fb994481c55623ef338885280e676f3b"
|
||||
|
||||
SRC_URI = "git://github.com/nothings/stb.git;protocol=https;branch=master"
|
||||
SRCREV = "013ac3beddff3dbffafd5177e7972067cd2b5083"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${includedir}/stb
|
||||
for file in ${S}/*.h; do
|
||||
install -m 0644 $file ${D}${includedir}/stb
|
||||
done
|
||||
# needed for gamescope
|
||||
install -m 0644 deprecated/stb_image_resize.h ${D}${includedir}/stb
|
||||
}
|
||||
|
Reference in New Issue
Block a user