fe70cb0187
libplist has switched to using autotools, so remove our cmake-related patches. Completely disable Python bindings: - it requires cython, which we do not have packaged (so far) - the only user of libplist is XBMC, which does not need the Python bindings. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Samuel Martin <s.martin49@gmail.com> Tested-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
703 B
Makefile
25 lines
703 B
Makefile
################################################################################
|
|
#
|
|
# libplist
|
|
#
|
|
################################################################################
|
|
|
|
LIBPLIST_VERSION = 1.11
|
|
LIBPLIST_SITE = http://cgit.sukimashita.com/libplist.git/snapshot
|
|
LIBPLIST_DEPENDENCIES = libxml2 host-pkgconf
|
|
LIBPLIST_INSTALL_STAGING = YES
|
|
LIBPLIST_LICENSE = LGPLv2.1+
|
|
LIBPLIST_LICENSE_FILES = COPYING
|
|
|
|
# Straight out of the git tree:
|
|
LIBPLIST_AUTORECONF = YES
|
|
|
|
# Does not build in parallel
|
|
LIBPLIST_MAKE = $(MAKE1)
|
|
|
|
# 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))
|