This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

28
package/ibrdtn/ibrdtn.mk Normal file
View File

@@ -0,0 +1,28 @@
################################################################################
#
# ibrdtn
#
################################################################################
IBRDTN_VERSION = 1.0.1
IBRDTN_SITE = https://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
IBRDTN_INSTALL_STAGING = YES
IBRDTN_LICENSE = Apache-2.0
IBRDTN_LICENSE_FILES = COPYING
IBRDTN_DEPENDENCIES = ibrcommon host-pkgconf
ifeq ($(BR2_PACKAGE_ZLIB),y)
IBRDTN_CONF_OPTS += --with-compression
IBRDTN_DEPENDENCIES += zlib
else
IBRDTN_CONF_OPTS += --without-compression
endif
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
IBRDTN_CONF_OPTS += --with-glib
IBRDTN_DEPENDENCIES += libglib2
else
IBRDTN_CONF_OPTS += --without-glib
endif
$(eval $(autotools-package))