mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
Added a new variable in recipe : LIC_FILES_CHKSUM It is a required field for every recipe. It describes license text location in the source files. And also stores md5sum of that license text. Any change in this license text triggers build error. Which enables developer to review any changes in the license and update the license fields in the recipe accordingly. For Example: contents of zlib_1.2.3.bb LICENSE = "zlib" LIC_FILES_CHKSUM = "file://README;md5=ae764cfda68da96df20af9fbf9fe49bd \ file://zlib.h;beginline=1;endline=30;md5=6ab03f03a5ee92d06b809797d4d5586d " Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
20 lines
545 B
BlitzBasic
20 lines
545 B
BlitzBasic
DESCRIPTION = "Zlib Compression Library"
|
|
SECTION = "libs"
|
|
PRIORITY = "required"
|
|
HOMEPAGE = "http://www.gzip.org/zlib/"
|
|
LICENSE = "zlib"
|
|
LIC_FILES_CHKSUM = "file://README;md5=ae764cfda68da96df20af9fbf9fe49bd \
|
|
file://zlib.h;beginline=1;endline=30;md5=6ab03f03a5ee92d06b809797d4d5586d "
|
|
PR = "r7"
|
|
|
|
SRC_URI = "http://www.zlib.net/zlib-1.2.3.tar.bz2 \
|
|
file://1.2.3.3.dfsg.patch.gz;patch=1 \
|
|
file://visibility.patch;patch=1 \
|
|
file://autotools.patch;patch=1 "
|
|
|
|
DEPENDS = "libtool-cross"
|
|
|
|
inherit autotools
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|