diff options
author | diizzyy <diizzyy@users.noreply.github.com> | 2016-09-23 13:17:58 +0200 |
---|---|---|
committer | Karl Palsson <karlp@etactica.com> | 2016-09-23 12:44:54 +0000 |
commit | 9622ec36dc020cc33bd2a73e6a508f40fa5dc68e (patch) | |
tree | 46dcd0d901362ab267c55cdfc3cd272a7c882fd7 /net/sipgrep | |
parent | a23f5c3b61d8cbda24163d71181e96335dd576e4 (diff) |
sipgrep: new package
Add sipgrep to repo
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'net/sipgrep')
-rw-r--r-- | net/sipgrep/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/net/sipgrep/Makefile b/net/sipgrep/Makefile new file mode 100644 index 000000000..272eefe93 --- /dev/null +++ b/net/sipgrep/Makefile @@ -0,0 +1,47 @@ +# +# Copyright (C) 2016 Daniel Engberg <daniel.engberg.lists@pyret.net> +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=sipgrep +PKG_VERSION:=20160914-devel +PKG_RELEASE:=1 +PKG_MAINTAINER:=Daniel Engberg <daniel.engberg.lists@pyret.net> +PKG_LICENSE:=GPL-3.0 +PKG_LICENSE_FILES:=COPYING + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL=https://github.com/sipcapture/sipgrep +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VERSION:=df8a95b066569be92aa38cad01086ea595b36863 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz + +PKG_FIXUP:=autoreconf + +include $(INCLUDE_DIR)/package.mk + +define Package/sipgrep + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libpcap +libpcre +libncursesw + TITLE:=Display and Troubleshoot SIP signaling in CLI + URL:=https://github.com/sipcapture/sipgrep +endef + +define Package/sipgrep/description + SipGrep is a utility for displaying and troubleshooting SIP signaling. +endef + +CONFIGURE_ARGS += \ + --enable-ncurses + +define Package/sipgrep/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/sipgrep $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,sipgrep)) |