Skip to content
Snippets Groups Projects
Verified Commit 8fce6b67 authored by Michal Hrusecky's avatar Michal Hrusecky :mouse:
Browse files

cshark: Ugly hack - drop cshark for now

parent ccb6bd6d
Branches
Tags
No related merge requests found
From bee29d2303d397088bac93e30b5a4fe3d200ca05 Mon Sep 17 00:00:00 2001
From: Michal Hrusecky <michal.hrusecky@nic.cz>
Date: Wed, 18 Jul 2018 16:20:56 +0200
Subject: [PATCH] cshark: Drop for now
---
net/cshark/Makefile | 62 ---------------------------------------------
1 file changed, 62 deletions(-)
delete mode 100644 net/cshark/Makefile
diff --git a/net/cshark/Makefile b/net/cshark/Makefile
deleted file mode 100644
index f8d449b..0000000
--- a/net/cshark/Makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# Copyright (C) 2014-2015 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=cshark
-PKG_VERSION=2015-11-24-$(PKG_SOURCE_VERSION)
-PKG_RELEASE=3
-
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=https://github.com/cloudshark/cshark.git
-PKG_SOURCE_SUBDIR=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_VERSION:=e575ab3d35d75a6f70488001fcba45690ebe9b3e
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
-PKG_MIRROR_HASH:=280d2711308a5b051a43788519ae6857394690d3155fe954388c43cd9035ec84
-
-PKG_BUILD_PARALLEL:=1
-PKG_INSTALL:=1
-
-include $(INCLUDE_DIR)/package.mk
-include $(INCLUDE_DIR)/cmake.mk
-
-define Package/cshark
- SECTION:=net
- CATEGORY:=Network
- TITLE:=CloudShark capture tool
- URL:=http://www.cloudshark.org/
- DEPENDS:=+libjson-c +libpcap +libuci +libubox +libuclient +libustream-mbedtls
- MAINTAINER:=Luka Perkov <luka@openwrt.org>
-endef
-
-CMAKE_OPTIONS = \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DWITH_DEBUG=OFF \
-
-define Package/cshark/conffiles
-/etc/config/cshark
-endef
-
-define Package/cshark/install
- $(INSTALL_DIR) $(1)/sbin
- $(INSTALL_BIN) \
- $(PKG_INSTALL_DIR)/usr/bin/cshark \
- $(1)/sbin/
-
- $(INSTALL_DIR) $(1)/etc/config
- $(INSTALL_CONF) \
- $(PKG_BUILD_DIR)/config/cshark \
- $(1)/etc/config/
-
- $(INSTALL_DIR) $(1)/etc/ssl/certs
- $(INSTALL_CONF) \
- $(PKG_BUILD_DIR)/config/ca-the_usertrust_network.pem \
- $(1)/etc/ssl/certs/
-endef
-
-
-$(eval $(call BuildPackage,cshark))
--
2.18.0
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment