118 lines
3.4 KiB
Makefile
118 lines
3.4 KiB
Makefile
#
|
|
# Copyright (C) 2016 - 2017 OpenWrt.org
|
|
# Copyright (C) 2016 Cesnet, z.s.p.o.
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=chan-sccp
|
|
PKG_VERSION:=v4.3.0-20171123
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://github.com/chan-sccp/chan-sccp.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=ed272e974897f075573a358d169e5c77889f5905
|
|
PKG_MIRROR_HASH:=b2fa296e532154b864164a9bc8d64a40dddef2940902b61c3726c77f56b4e74e
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_LICENSE:=GPL-1.0
|
|
PKG_LICENSE_FILES:=COPYING LICENSE
|
|
PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
# musl and glibc include their own iconv, but uclibc does not
|
|
ifneq ($(CONFIG_USE_UCLIBC),)
|
|
TARGET_CPPFLAGS+= \
|
|
-I$(STAGING_DIR)/usr/lib/libiconv-full/include
|
|
TARGET_LDFLAGS+= \
|
|
-L$(STAGING_DIR)/usr/lib/libiconv-full/lib -liconv
|
|
endif
|
|
|
|
define Package/chan-sccp/Default
|
|
SUBMENU:=Telephony
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=SCCP channel support
|
|
URL:=https://github.com/chan-sccp/chan-sccp
|
|
DEPENDS:=+USE_UCLIBC:libiconv-full +libltdl
|
|
PKG_BUILD_DEPENDS:=libiconv
|
|
endef
|
|
|
|
define Package/asterisk13-chan-sccp
|
|
$(call Package/chan-sccp/Default)
|
|
DEPENDS+=asterisk13
|
|
VARIANT:=asterisk13
|
|
CONFLICTS:=asterisk13-chan-skinny
|
|
endef
|
|
|
|
define Package/asterisk15-chan-sccp
|
|
$(call Package/chan-sccp/Default)
|
|
DEPENDS+=asterisk15
|
|
VARIANT:=asterisk15
|
|
CONFLICTS:=asterisk15-chan-skinny
|
|
endef
|
|
|
|
define Package/description/Default
|
|
Replacement for the SCCP channel driver (chan_skinny) in Asterisk.
|
|
Extended features include shared lines, presence / BLF, customizable
|
|
feature buttons and custom device state.
|
|
endef
|
|
|
|
Package/asterisk13-chan-sccp/description = $(Package/description/Default)
|
|
Package/asterisk15-chan-sccp/description = $(Package/description/Default)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-debug \
|
|
--enable-advanced-functions \
|
|
--enable-conference \
|
|
--enable-video
|
|
|
|
ifeq ($(BUILD_VARIANT),asterisk13)
|
|
CONFIGURE_ARGS += --with-asterisk=$(STAGING_DIR)/usr/include/asterisk-13
|
|
endif
|
|
|
|
ifeq ($(BUILD_VARIANT),asterisk15)
|
|
CONFIGURE_ARGS += --with-asterisk=$(STAGING_DIR)/usr/include/asterisk-15
|
|
endif
|
|
|
|
define Package/conffiles/Default
|
|
/etc/asterisk/sccp.conf
|
|
endef
|
|
|
|
Package/asterisk13-chan-sccp/conffiles = $(Package/conffiles/Default)
|
|
Package/asterisk15-chan-sccp/conffiles = $(Package/conffiles/Default)
|
|
|
|
# Asterisk 13 gets mistaken for Asterisk 15 because it was patched to include
|
|
# iostream support. To get it detected correctly make it impossible for the
|
|
# build system to find the iostream header.
|
|
define Build/Prepare
|
|
$(call Build/Prepare/Default)
|
|
ifeq ($(BUILD_VARIANT),asterisk13)
|
|
$(SED) 's|asterisk/iostream.h|asterisk/iostream.404|' \
|
|
$(PKG_BUILD_DIR)/autoconf/asterisk.m4
|
|
endif
|
|
endef
|
|
|
|
define Package/Install/Default
|
|
$(INSTALL_DIR) $(1)/etc/asterisk
|
|
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/asterisk/sccp.conf $(1)/etc/asterisk
|
|
$(INSTALL_DIR) $(1)/usr/lib/asterisk/modules
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/asterisk/modules/chan_sccp.so $(1)/usr/lib/asterisk/modules/
|
|
endef
|
|
|
|
Package/asterisk13-chan-sccp/install = $(Package/Install/Default)
|
|
Package/asterisk15-chan-sccp/install = $(Package/Install/Default)
|
|
|
|
$(eval $(call BuildPackage,asterisk13-chan-sccp))
|
|
$(eval $(call BuildPackage,asterisk15-chan-sccp))
|