[packages] Updated email address in packages I maintain
[openwrt/svn-archive/archive.git] / net / smap / 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:=smap
11 PKG_VERSION:=0.6.0
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-20081016.tar.gz
15 PKG_SOURCE_URL:=http://www.wormulon.net/smap/
16 PKG_MD5SUM:=814456ccc8fea5688382b7ec55fe44eb
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/smap-$(PKG_VERSION)/smap
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 LIBTOOL="$(STAGING_DIR)/host/bin/libtool"
24
25 define Package/smap
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=A SIP network discovery tool
29 MAINTAINER:=Daniel Dickinson <openwrt@cshore.neomailbox.net>
30 URL:=http://www.wormulon.net/smap/
31 DEPENDS:=+libpthread
32 endef
33
34 define Package/smap/description
35 Discovers and identifies SIP devices on the network including hardware
36 phones, softphones, PBX software, and PBX equipment.
37 endef
38
39 # define Package/smap/conffiles
40 # /etc/config/smap
41 # endef
42
43 define Build/Configure
44 endef
45
46 define Build/Compile
47 $(MAKE) -C $(PKG_BUILD_DIR) \
48 CC="$(TARGET_CC)" \
49 LD="$(TARGET_LD)" \
50 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -DRAW_SOCKET -DHAVE_RANDOM -DSMAP_OS=linux" \
51 LDFLAGS="$(TARGET_LDFLAGS) -lm -lpthread" \
52 LIBTOOL="$(LIBTOOL)" \
53 smap
54 endef
55
56 define Package/smap/install
57 $(INSTALL_DIR) $(1)/usr/bin
58 $(INSTALL_BIN) $(PKG_BUILD_DIR)/smap $(1)/usr/bin
59 $(INSTALL_DIR) $(1)/usr/share/smap
60 $(CP) $(PKG_BUILD_DIR)/fingerprint.db $(1)/usr/share/smap
61 endef
62
63 $(eval $(call BuildPackage,smap))