eca5c43835
Use official tarball and so drop autoreconf Extract from https://github.com/libimobiledevice/libplist/releases/tag/2.2.0: "Rename library and all related files by adding an API version resulting in libplist-2.0 and libplist++-2.0" The only user of libplist in buildroot is kodi which is comptatible with libplist 2.2.0 since its version 19.0-Matrix and22ab58e8f9
which has been commited in148e695e37
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
675 B
Makefile
20 lines
675 B
Makefile
################################################################################
|
|
#
|
|
# libplist
|
|
#
|
|
################################################################################
|
|
|
|
LIBPLIST_VERSION = 2.2.0
|
|
LIBPLIST_SOURCE = libplist-$(LIBPLIST_VERSION).tar.bz2
|
|
LIBPLIST_SITE = https://github.com/libimobiledevice/libplist/releases/download/$(LIBPLIST_VERSION)
|
|
LIBPLIST_INSTALL_STAGING = YES
|
|
LIBPLIST_LICENSE = LGPL-2.1+
|
|
LIBPLIST_LICENSE_FILES = COPYING
|
|
LIBPLIST_CPE_ID_VENDOR = libimobiledevice
|
|
|
|
# Disable building Python bindings, because it requires host-cython, which
|
|
# is not packaged in Buildroot at all.
|
|
LIBPLIST_CONF_OPTS = --without-cython
|
|
|
|
$(eval $(autotools-package))
|