2006-08-08 12:41:55 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=sipsak
|
|
|
|
PKG_VERSION:=0.9.6
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-08-08 12:41:55 +00:00
|
|
|
PKG_SOURCE_URL:=http://download.berlios.de/sipsak/ \
|
|
|
|
http://ftp.iptel.org/pub/sipsak/
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_MD5SUM:=c4eb8e282902e75f4f040f09ea9d99d5
|
2006-08-08 12:41:55 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/sipsak
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2007-01-26 10:29:58 +00:00
|
|
|
DEPENDS:=+libopenssl
|
2006-08-08 12:41:55 +00:00
|
|
|
TITLE:=SIP (Session Initiation Protocol) stress and diagnostics utility
|
|
|
|
URL:=http://www.sipsak.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--disable-gnutls \
|
|
|
|
)
|
2006-08-08 12:41:55 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/sipsak/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sipsak $(1)/usr/bin/
|
2006-08-08 12:41:55 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,sipsak))
|