package/exempi: new package

Signed-off-by: Ilya Averyanov <averyanovin@gmail.com>
[Thomas:
 - add missing dependencies on expat and zlib
 - add missing depends on C++ and dynamic library support, and the
   corresponding Config.in comment
 - add the missing entry to the DEVELOPERS file
 - add the missing hash for the license file
 - adjust indentation in the Config.in file
 - use --disable-unittest instead of --enable-unittest=no.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Ilya Averyanov 2018-12-18 21:11:02 +03:00 committed by Thomas Petazzoni
parent c4d08c196a
commit 133f85f87d
5 changed files with 37 additions and 0 deletions

View file

@ -959,6 +959,9 @@ F: package/angularjs/
N: Ilias Apalodimas <apalos@gmail.com>
F: package/keepalived/
N: Ilya Averyanov <averyanovin@gmail.com>
F: package/exempi/
N: Ismael Luceno <ismael@iodev.co.uk>
F: package/axel/

View file

@ -1249,6 +1249,7 @@ menu "Graphics"
source "package/cairomm/Config.in"
source "package/chipmunk/Config.in"
source "package/exiv2/Config.in"
source "package/exempi/Config.in"
source "package/fltk/Config.in"
source "package/fontconfig/Config.in"
source "package/freetype/Config.in"

14
package/exempi/Config.in Normal file
View file

@ -0,0 +1,14 @@
config BR2_PACKAGE_EXEMPI
bool "exempi"
depends on !BR2_STATIC_LIBS # dlfcn.h
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_EXPAT
select BR2_PACKAGE_ZLIB
help
Exempi is an implementation of XMP (Extensible Metadata
Platform). Version 2.x is based on Adobe XMP SDK.
http://libopenraw.freedesktop.org/wiki/Exempi
comment "exempi needs a toolchain w/ C++, dynamic library"
depends on BR2_STATIC_LIBS || BR2_INSTALL_LIBSTDCPP

View file

@ -0,0 +1,3 @@
# Locally calculated
sha256 406185feb88e84ea1d4b4251370be2991205790d7113a7e28e192ff46a4f221e exempi-2.4.5.tar.bz2
sha256 3d3c3593c15e0d35bdae0df7c642106250f6be3adc61477419413900f23ae607 COPYING

16
package/exempi/exempi.mk Normal file
View file

@ -0,0 +1,16 @@
################################################################################
#
# exempi
#
################################################################################
EXEMPI_VERSION = 2.4.5
EXEMPI_SOURCE = exempi-$(EXEMPI_VERSION).tar.bz2
EXEMPI_SITE = https://libopenraw.freedesktop.org/download
EXEMPI_INSTALL_STAGING = YES
EXEMPI_CONF_OPTS = --enable-unittest=no
EXEMPI_DEPENDENCIES = host-pkgconf expat zlib
EXEMPI_LICENSE = BSD-3-Clause
EXEMPI_LICENSE_FILES = COPYING
$(eval $(autotools-package))