mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-16 14:19:26 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
25 lines
597 B
Makefile
25 lines
597 B
Makefile
################################################################################
|
|
#
|
|
# libbytesize
|
|
#
|
|
################################################################################
|
|
|
|
LIBBYTESIZE_VERSION = 2.5
|
|
LIBBYTESIZE_SITE = https://github.com/storaged-project/libbytesize/releases/download/$(LIBBYTESIZE_VERSION)
|
|
LIBBYTESIZE_LICENSE = LGPL-2.1+
|
|
LIBBYTESIZE_LICENSE_FILES = LICENSE
|
|
LIBBYTESIZE_INSTALL_STAGING = YES
|
|
|
|
LIBBYTESIZE_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
host-gettext \
|
|
gmp \
|
|
mpfr \
|
|
pcre2
|
|
|
|
LIBBYTESIZE_CONF_OPTS += \
|
|
--without-python3 \
|
|
--without-tools
|
|
|
|
$(eval $(autotools-package))
|