mirror of
https://github.com/openwrt/telephony.git
synced 2025-12-21 17:04:36 +04:00
This package contains some of the modules that have previously been part of the main baresip repo. Signed-off-by: Daniel Danzberger <dd@embedd.com>
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=baresip-apps
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/baresip/baresip-apps.git
|
|
PKG_SOURCE_VERSION:=0b25d61247f3e8d15071b09223e35f8806dacad8
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_MIRROR_HASH:=35599fa7d081640a86a0ae91e1b46209fa1ddd41295332948ec29fa5a15c2b65
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=docs/COPYING
|
|
PKG_MAINTAINER:=Daniel Danzberger <dd@embedd.com>
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/baresip-app/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Telephony
|
|
URL:=https://github.com/baresip/baresip-apps
|
|
endef
|
|
|
|
baresip-apps:= \
|
|
auloop \
|
|
autotest \
|
|
b2bua \
|
|
intercom \
|
|
kaoptions \
|
|
multicast \
|
|
parcall \
|
|
qualify \
|
|
vidloop
|
|
|
|
empty:=
|
|
space:= $(empty) $(empty)
|
|
|
|
MODULES:=$(foreach m,$(baresip-apps),$(if $(CONFIG_PACKAGE_baresip-app-$(m)),$(m)))
|
|
MODULES:=$(strip $(MODULES))
|
|
MODULES:=$(subst $(space),;,$(MODULES))
|
|
|
|
CMAKE_OPTIONS += -DMODULES="$(MODULES)"
|
|
|
|
define BuildPlugin
|
|
define Package/baresip-app-$(1)
|
|
$$(call Package/baresip-app/Default)
|
|
TITLE:=$(2)
|
|
DEPENDS:=+baresip $(patsubst +%,+PACKAGE_$(PKG_NAME)-app-$(1):%,$(3))
|
|
endef
|
|
define Package/baresip-app-$(1)/install
|
|
$(INSTALL_DIR) $$(1)/usr/lib/baresip/modules
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/baresip/modules/$(1).so \
|
|
$$(1)/usr/lib/baresip/modules
|
|
endef
|
|
$$(eval $$(call BuildPackage,baresip-app-$(1)))
|
|
endef
|
|
|
|
$(eval $(call BuildPlugin,auloop,Audio Looping,))
|
|
$(eval $(call BuildPlugin,autotest,Auto Test Module,))
|
|
$(eval $(call BuildPlugin,b2bua,Back-to-Back User-Agent,))
|
|
$(eval $(call BuildPlugin,intercom,Intercom Module,))
|
|
$(eval $(call BuildPlugin,kaoptions,Keepalive via SIP OPTIONS message,))
|
|
$(eval $(call BuildPlugin,multicast,Mulitcast Support,))
|
|
$(eval $(call BuildPlugin,parcall,Parallel call module,))
|
|
$(eval $(call BuildPlugin,qualify,Pinging of peer in CALL_STATE_INCOMING via SIP OPTIONS,))
|
|
$(eval $(call BuildPlugin,vidloop,Video Loop,))
|