dde3ed4f90
- Move site to github - Add gcc >= 5 dependency for C++14:cafeffaa60
- Remove first patch and use --without-python instead - Remove second patch (patch has been merged in 2015:47ca0621cc
) - Add a new patch to fix build when size_t is an unsigned int - Use new --disable-tests option - Update license to BSD-3-Clause and replace COPYING by LICENSE.txt:3f12abc045
- Add hash for license file Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
592 B
Makefile
22 lines
592 B
Makefile
################################################################################
|
|
#
|
|
# libserial
|
|
#
|
|
################################################################################
|
|
|
|
LIBSERIAL_VERSION = v1.0.0
|
|
LIBSERIAL_SITE = $(call github,crayzeewulf,libserial,$(LIBSERIAL_VERSION))
|
|
LIBSERIAL_INSTALL_STAGING = YES
|
|
LIBSERIAL_LICENSE = BSD-3-Clause
|
|
LIBSERIAL_LICENSE_FILES = LICENSE.txt
|
|
LIBSERIAL_DEPENDENCIES = boost
|
|
# From git
|
|
LIBSERIAL_AUTORECONF = YES
|
|
|
|
LIBSERIAL_CONF_ENV = ac_cv_prog_DOCBOOK2PDF=no
|
|
LIBSERIAL_CONF_OPTS = \
|
|
--disable-tests \
|
|
--without-python
|
|
|
|
$(eval $(autotools-package))
|