xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libexif/libexif_0.6.24.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunSUMMARY = "Library for reading extended image information (EXIF) from JPEG files"
2*4882a593SmuzhiyunDESCRIPTION = "libexif is a library for parsing, editing, and saving EXIF data. It is \
3*4882a593Smuzhiyunintended to replace lots of redundant implementations in command-line \
4*4882a593Smuzhiyunutilities and programs with GUIs."
5*4882a593SmuzhiyunHOMEPAGE = "https://libexif.github.io/"
6*4882a593SmuzhiyunSECTION = "libs"
7*4882a593SmuzhiyunLICENSE = "LGPL-2.1-only"
8*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad"
9*4882a593Smuzhiyun
10*4882a593Smuzhiyundef version_underscore(v):
11*4882a593Smuzhiyun    return "_".join(v.split("."))
12*4882a593Smuzhiyun
13*4882a593SmuzhiyunSRC_URI = "https://github.com/libexif/libexif/releases/download/v${PV}/libexif-${PV}.tar.bz2 \
14*4882a593Smuzhiyun           "
15*4882a593Smuzhiyun
16*4882a593SmuzhiyunSRC_URI[sha256sum] = "d47564c433b733d83b6704c70477e0a4067811d184ec565258ac563d8223f6ae"
17*4882a593Smuzhiyun
18*4882a593SmuzhiyunUPSTREAM_CHECK_URI = "https://github.com/libexif/libexif/releases/"
19*4882a593Smuzhiyun
20*4882a593Smuzhiyuninherit autotools gettext
21*4882a593Smuzhiyun
22*4882a593SmuzhiyunEXTRA_OECONF += "--disable-docs"
23*4882a593Smuzhiyun
24*4882a593SmuzhiyunBBCLASSEXTEND = "native nativesdk"
25