Advertisement
Guest User

james

a guest
Jun 29th, 2011
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  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.  
  8. include $(TOPDIR)/rules.mk
  9.  
  10. PKG_NAME:=suricata
  11. PKG_VERSION:=1.1beta2
  12. PKG_RELEASE:=1
  13.  
  14. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  15. PKG_SOURCE:=http://www.openinfosecfoundation.org/download/suricata-1.1beta2.tar.gz
  16. PKG_SOURCE_URL:=http://www.openinfosecfoundation.org/download/suricata-1.1beta2.tar.gz
  17. PKG_MD5SUM:=0bfc6e122908eb1f1b6e72106aa9ac3f
  18.  
  19. PKG_BUILD_PARALLEL:=1
  20. PKG_INSTALL:=1
  21.  
  22.  
  23. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  24.  
  25. include $(INCLUDE_DIR)/package.mk
  26.  
  27. define Package/oisf
  28. SECTION:=net
  29. CATEGORY:=Network
  30. DEPENDS:=+pcre +libtool +libnetfilter_queue +libpcap +libnet +libyaml +zlib +libcap +libnids +libnet0 +libopenssl +libnfnetlink
  31. TITLE:=NIDS/IPS
  32. URL:=http://www.openinfosecfoundation.org/
  33. endef
  34.  
  35. define Package/suricata/description
  36. NIDS IPS
  37. endef
  38.  
  39.  
  40. define Build/Configure
  41. $(call Build/Configure/Default, \
  42. )
  43. endef
  44.  
  45. define Build/Compile
  46.  
  47. endef
  48.  
  49. define Package/suricata/install
  50. endef
  51.  
  52. $(eval $(call BuildPackage,suricata))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement