kismet: fix dependency issues
[openwrt/svn-archive/archive.git] / net / rtpproxy / Makefile
1 #
2 # Copyright (C) 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:=rtpproxy
11 PKG_VERSION:=1.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://b2bua.org/chrome/site/
16 PKG_MD5SUM:=b0b5d6cdce3f17cdbbac473c11a2d0e5
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/rtpproxy
23 SECTION:=net
24 CATEGORY:=Network
25 SUBMENU:=Telephony
26 DEPENDS:=+libpthread
27 TITLE:=RTP (Realtime Transport Protocol) proxy
28 URL:=http://www.rtpproxy.org/
29 endef
30
31 # uses GNU configure
32
33 define Package/rtpproxy/install
34 $(INSTALL_DIR) $(1)/usr/bin
35 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rtpproxy $(1)/usr/bin/
36 endef
37
38 $(eval $(call BuildPackage,rtpproxy))