mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
70 lines
1.9 KiB
Makefile
70 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2022 IOPSYS Software Solutions AB
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=voicemngr
|
|
PKG_VERSION:=0.1
|
|
PKG_LICENSE:=PROPRIETARY
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
LOCAL_SRC_DIR:=~/git/voip/voicemngr
|
|
LOCAL_DEV=0
|
|
ifneq ($(LOCAL_DEV),1)
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/voicemngr.git
|
|
PKG_SOURCE_VERSION:=4a8583a647d97aa8c3b1bf7ab71206c1438b86a6
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_MIRROR_HASH:=skip
|
|
endif
|
|
|
|
# All config variable that are passed to the make invocation, directly or
|
|
# indirectly. This ensures that the package is rebuilt on config-changes.
|
|
PKG_CONFIG_DEPENDS:=CONFIG_TARGET_BOARD
|
|
|
|
TARGET_PLATFORM:=
|
|
ifeq ($(CONFIG_TARGET_iopsys_brcm63xx_arm),y)
|
|
TARGET_PLATFORM:=BROADCOM
|
|
else ifeq ($(CONFIG_TARGET_iopsys_qualcomm),y)
|
|
TARGET_PLATFORM:=QUALCOMM
|
|
endif
|
|
|
|
export TARGET_PLATFORM
|
|
export CONFIG_BRCM_SDK_VER_504040
|
|
export CONFIG_BCM_CHIP_ID
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
TARGET_CFLAGS += -Wall -Werror
|
|
|
|
define Package/voicemngr
|
|
CATEGORY:=Utilities
|
|
TITLE:=IOPSYS Voice Manager
|
|
URL:=
|
|
DEPENDS:= +libubox +ubus +libpicoevent +uci +TARGET_iopsys_brcm63xx_arm:bcmkernel +TARGET_iopsys_qualcomm:vtsp
|
|
endef
|
|
|
|
define Package/voicemngr/description
|
|
Voice manager is a daemon that bridges Asterisk and platform specific DSP/SLIC APIs
|
|
endef
|
|
|
|
ifeq ($(LOCAL_DEV),1)
|
|
define Build/Prepare
|
|
@echo "Building from the local source. TARGET_PLATFORM=$(TARGET_PLATFORM)"
|
|
rsync -av --exclude=.* $(LOCAL_SRC_DIR)/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
endif
|
|
|
|
define Package/voicemngr/install
|
|
$(CP) ./files/* $(1)/
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/voicemngr $(1)/usr/sbin/
|
|
$(CP) $(PKG_BUILD_DIR)/libvoice/libvoice.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,voicemngr))
|
|
|