mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-08 02:07:28 +01:00
139397e Add debug messages for all RTP statistics numbers from Brcm API 8f11273 Get number of jitter buffer overruns and underruns
59 lines
1.4 KiB
Makefile
59 lines
1.4 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:=libvoice-broadcom
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.0.2
|
|
PKG_LICENSE:=PROPRIETARY
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
LOCAL_SRC_DIR:=~/git/voip/$(PKG_NAME)
|
|
LOCAL_DEV=0
|
|
ifneq ($(LOCAL_DEV),1)
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/$(PKG_NAME).git
|
|
PKG_SOURCE_VERSION:=139397e7e0a80af4a83119ff8f15379f206ccbdf
|
|
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
|
|
|
|
LIBVOICE_PKG_BUILD_DIR := $(PKG_BUILD_DIR)
|
|
|
|
export CONFIG_BCM_CHIP_ID
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
TARGET_CFLAGS += -Wall -Werror
|
|
|
|
define Package/$(PKG_NAME)
|
|
CATEGORY:=Utilities
|
|
TITLE:=IOPSYS libvoice for Broadcom
|
|
URL:=
|
|
DEPENDS:=
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
Libvoice is a library that provides a uniform set of APIs and data types with hardware abstract layer for DSP/SLIC from different vendors
|
|
endef
|
|
|
|
ifeq ($(LOCAL_DEV),1)
|
|
define Build/Prepare
|
|
rsync -av --exclude=.* $(LOCAL_SRC_DIR)/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
endif
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|
|
|