mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
Fixes http://autobuild.buildroot.net/results/183a1be6ab1137c90dca0201d4bc72c7c0e659a3 alioth.debian.org uses a SSL certificate signed by spi-inc.org, which isn't a trusted CA on non-Debian systems, causing wget to refuse download. Fix it by using http URLs instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
37 lines
995 B
Makefile
37 lines
995 B
Makefile
##########################################################
|
|
#
|
|
# PCSC-Lite
|
|
#
|
|
# ########################################################
|
|
PCSC_LITE_VERSION = 1.8.6
|
|
PCSC_LITE_SOURCE = pcsc-lite-$(PCSC_LITE_VERSION).tar.bz2
|
|
PCSC_LITE_SITE = http://alioth.debian.org/frs/download.php/3757
|
|
PCSC_LITE_INSTALL_STAGING = YES
|
|
PCSC_LITE_DEPENDENCIES = host-pkg-config
|
|
|
|
# - libudev and libusb are optional
|
|
# - libudev and libusb can't be used together
|
|
# - libudev has a priority over libusb
|
|
|
|
ifeq ($(BR2_PACKAGE_UDEV),y)
|
|
PCSC_LITE_CONF_OPT += --enable-libudev --disable-libusb
|
|
PCSC_LITE_DEPENDENCIES += udev
|
|
else
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
PCSC_LITE_CONF_OPT += --enable-libusb --disable-libudev
|
|
PCSC_LITE_DEPENDENCIES += libusb
|
|
else
|
|
PCSC_LITE_CONF_OPT += --disable-libusb --disable-libudev
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(PACKAGE_PCSC_LITE_DEBUGATR),y)
|
|
PCSC_LITE_CONF_OPT += --enable-debugatr
|
|
endif
|
|
|
|
ifeq ($(PACKAGE_PCSC_LITE_EMBEDDED),y)
|
|
PCSC_LITE_CONF_OPT += --enable-embedded
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|