repo: https://github.com/buildroot/buildroot/tree/2021.05 commit: 69f79f2a2ee1417e19c1ead2c9226e11753c06cb Update for 2021.05 Change-Id: I77d6d14da04483c97cb172bf6732732012e538d9
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))
|