e53042403f36241e57bdb8d5b12935a8520d6f0d
[openwrt/svn-archive/archive.git] / net / raddump / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=raddump
12 PKG_VERSION:=0.3.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/raddump
17 PKG_MD5SUM:=f8c29c67141ea78bb6ae8b97d5149480
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/raddump
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libpcap +libopenssl
28 TITLE:=raddump interprets captured RADIUS packets.
29 URL:=http://sourceforge.net/projects/raddump
30 endef
31
32 define Package/raddump/description
33 raddump interprets captured RADIUS packets to print a
34 timestamp, packet length, RADIUS packet type, source and
35 destination hosts and ports, and included attribute names and
36 values for each packet.
37 endef
38
39 # uses GNU configure
40
41 define Build/Compile
42 $(MAKE) -C $(PKG_BUILD_DIR) \
43 DESTDIR="$(PKG_INSTALL_DIR)" \
44 all install
45 endef
46
47 define Package/raddump/install
48 $(INSTALL_DIR) $(1)/usr/bin
49 $(CP) $(PKG_INSTALL_DIR)/usr/bin/raddump $(1)/usr/bin/
50 endef
51
52 $(eval $(call BuildPackage,raddump))