Community maintained packages for ImmortalWrt.
Révision | 8e668ed7d5155ca3ea95dfc7097cfd696e85d562 (tree) |
---|---|
l'heure | 2022-05-25 22:19:55 |
Auteur | Rosen Penev <rosenp@gmai...> |
Commiter | Tianling Shen |
opencv: remove
This package is unmaintained. It also seems to be unused.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit c23195596019a8d92637b389ede9ff2c53549556)
@@ -1,71 +0,0 @@ | ||
1 | -# | |
2 | -# Copyright (C) 2013-2014 wrtnode.com | |
3 | -# Copyright (C) 2015-2016 OpenWrt.org | |
4 | -# | |
5 | -# This is free software, licensed under the GNU General Public License v2. | |
6 | -# See /LICENSE for more information. | |
7 | -# | |
8 | - | |
9 | -include $(TOPDIR)/rules.mk | |
10 | - | |
11 | -PKG_NAME:=opencv | |
12 | -PKG_VERSION:=4.1.2 | |
13 | -PKG_RELEASE:=1 | |
14 | - | |
15 | -PKG_SOURCE_PROTO:=git | |
16 | -PKG_SOURCE_URL:=https://github.com/opencv/opencv | |
17 | -PKG_SOURCE_VERSION:=$(PKG_VERSION) | |
18 | -PKG_MIRROR_HASH:=1bd1cad4fa5c8f21499a45869fea40b7886026c048129a01be87b092178258c1 | |
19 | - | |
20 | -PKG_MAINTAINER:= | |
21 | -PKG_LICENSE:=BSD-3-Clause | |
22 | -PKG_LICENSE_FILES:=LICENSE | |
23 | - | |
24 | -CMAKE_INSTALL:=1 | |
25 | -CMAKE_BINARY_SUBDIR:=build | |
26 | -PKG_BUILD_PARALLEL:=1 | |
27 | -PKG_USE_MIPS16:=0 | |
28 | - | |
29 | -include $(INCLUDE_DIR)/package.mk | |
30 | -include $(INCLUDE_DIR)/cmake.mk | |
31 | - | |
32 | -define Package/opencv/Default/description | |
33 | - OpenCV (Open Source Computer Vision Library) is an open source computer | |
34 | - vision and machine learning software library. OpenCV was built to provide | |
35 | - a common infrastructure for computer vision applications and to accelerate | |
36 | - the use of machine perception in the commercial products. Being a | |
37 | - BSD-licensed product, OpenCV makes it easy for businesses to utilize | |
38 | - and modify the code. | |
39 | -endef | |
40 | - | |
41 | -define Package/opencv | |
42 | - SECTION:=libs | |
43 | - CATEGORY:=Libraries | |
44 | - TITLE:=OpenCV | |
45 | - URL:=https://opencv.org/ | |
46 | - DEPENDS:=+libpthread +librt +libatomic +libstdcpp +zlib +libjpeg +libwebp | |
47 | -endef | |
48 | - | |
49 | -CMAKE_OPTIONS += \ | |
50 | - -DBUILD_opencv_gpu:BOOL=OFF \ | |
51 | - -DWITH_1394:BOOL=OFF -DBUILD_opencv_stitching:BOOL=OFF \ | |
52 | - -DBUILD_opencv_superres:BOOL=OFF -DBUILD_opencv_ts:BOOL=OFF \ | |
53 | - -DBUILD_opencv_highgui:BOOL=OFF \ | |
54 | - -DBUILD_opencv_videostab:BOOL=OFF \ | |
55 | - -DWITH_FFMPEG:BOOL=OFF \ | |
56 | - -DWITH_GSTREAMER:BOOL=OFF \ | |
57 | - -DWITH_LIBV4L:BOOL=OFF \ | |
58 | - -DWITH_PNG:BOOL=OFF \ | |
59 | - -DWITH_GTK:BOOL=OFF \ | |
60 | - -DWITH_TIFF:BOOL=OFF \ | |
61 | - -DCMAKE_VERBOSE:BOOL=OFF \ | |
62 | - -DENABLE_PRECOMPILED_HEADERS=OFF | |
63 | - | |
64 | -TARGET_LDFLAGS += -latomic | |
65 | - | |
66 | -define Package/opencv/install | |
67 | - $(INSTALL_DIR) $(1)/usr/lib | |
68 | - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libopencv* $(1)/usr/lib/ | |
69 | -endef | |
70 | - | |
71 | -$(eval $(call BuildPackage,opencv)) |
@@ -1,23 +0,0 @@ | ||
1 | -Introduction | |
2 | -=== | |
3 | - | |
4 | -#### OpenCV: Open Source Computer Vision Library.OpenCV is based on (open source) issued cross-platform computer vision library, you can run on Linux, Windows and Mac OS operating systems. | |
5 | - | |
6 | -#### Resources | |
7 | - | |
8 | -* Homepage: <http://opencv.org> | |
9 | -* Docs: <http://docs.opencv.org> | |
10 | -* Q&A forum: <http://answers.opencv.org> | |
11 | -* Issue tracking: <http://code.opencv.org> | |
12 | - | |
13 | -#### Contributing | |
14 | - | |
15 | -Please read before starting work on a pull request: <http://code.opencv.org/projects/opencv/wiki/How_to_contribute> | |
16 | - | |
17 | -Summary of guidelines: | |
18 | - | |
19 | -* One pull request per issue; | |
20 | -* Choose the right base branch; | |
21 | -* Include tests and documentation; | |
22 | -* Clean up "oops" commits before submitting; | |
23 | -* Follow the coding style guide. |