[packages] keepalived: update to v1.1.19
[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 include $(INCLUDE_DIR)/package.mk
20
21 define Package/sipsak
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+libopenssl
25 TITLE:=SIP (Session Initiation Protocol) stress and diagnostics utility
26 URL:=http://www.sipsak.org/
27 endef
28
29 CONFIGURE_ARGS += \
30 --disable-gnutls \
31
32 define Build/Compile
33 $(MAKE) -C $(PKG_BUILD_DIR) \
34 DESTDIR="$(PKG_INSTALL_DIR)" \
35 all install
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))