7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# ibrdtnd
|
|
#
|
|
################################################################################
|
|
|
|
IBRDTND_VERSION = 1.0.1
|
|
IBRDTND_SOURCE = ibrdtnd-$(IBRDTND_VERSION).tar.gz
|
|
IBRDTND_SITE = https://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
|
|
IBRDTND_LICENSE = Apache-2.0
|
|
IBRDTND_LICENSE_FILES = COPYING
|
|
IBRDTND_DEPENDENCIES = ibrdtn ibrcommon
|
|
|
|
# Disable features that don't have the necessary dependencies in
|
|
# Buildroot
|
|
IBRDTND_CONF_OPTS = \
|
|
--disable-dtndht \
|
|
--without-wifip2p \
|
|
--without-vmime
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDAEMON),y)
|
|
IBRDTND_CONF_OPTS += --enable-libdaemon
|
|
IBRDTND_DEPENDENCIES += libdaemon
|
|
else
|
|
IBRDTND_CONF_OPTS += --disable-libdaemon
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
IBRDTND_CONF_OPTS += --with-curl
|
|
IBRDTND_DEPENDENCIES += libcurl
|
|
else
|
|
IBRDTND_CONF_OPTS += --without-curl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLITE),y)
|
|
IBRDTND_CONF_OPTS += --with-sqlite
|
|
IBRDTND_DEPENDENCIES += sqlite
|
|
else
|
|
IBRDTND_CONF_OPTS += --without-sqlite
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
IBRDTND_CONF_OPTS += --with-tls
|
|
IBRDTND_DEPENDENCIES += openssl
|
|
else
|
|
IBRDTND_CONF_OPTS += --without-tls
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|