[net] Telephony: Moved most (all?) SIP and other telephony applications to the Teleph...
[openwrt/svn-archive/archive.git] / net / sipsak / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=sipsak
11 PKG_VERSION:=0.9.6
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.berlios.de/sipsak/ \
16 http://ftp.iptel.org/pub/sipsak/
17 PKG_MD5SUM:=c4eb8e282902e75f4f040f09ea9d99d5
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/sipsak
24 SECTION:=net
25 CATEGORY:=Network
26 SUBMENU:=Telephony
27 DEPENDS:=+libopenssl
28 TITLE:=SIP (Session Initiation Protocol) stress and diagnostics utility
29 URL:=http://www.sipsak.org/
30 endef
31
32 define Build/Configure
33 $(call Build/Configure/Default, \
34 --disable-gnutls \
35 )
36 endef
37
38 define Package/sipsak/install
39 $(INSTALL_DIR) $(1)/usr/bin
40 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sipsak $(1)/usr/bin/
41 endef
42
43 $(eval $(call BuildPackage,sipsak))