Date:2011-07-14 22:19:21 (12 years 8 months ago)
Author:Jiri Brozovsky
Commit:1ce048c327015ca5042cdc51753536f5ac148c87
Message:Cscope source code browser -initial port to OpenWRT.

Files: cscope/Makefile (1 diff)

Change Details

cscope/Makefile
1#
2# This is free software, licensed under the GNU General Public License v2.
3# See /LICENSE for more information.
4#
5
6include $(TOPDIR)/rules.mk
7
8PKG_NAME:=cscope
9PKG_VERSION:=15.7a
10PKG_RELEASE:=1
11
12PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
13PKG_SOURCE_URL:=@SF/cscope
14PKG_MD5SUM:=da43987622ace8c36bbf14c15a350ec1
15
16PKG_CAT:=bzcat
17PKG_INSTALL:=1
18
19include $(INCLUDE_DIR)/package.mk
20
21define Package/cscope
22  SECTION:=utils
23  CATEGORY:=Utilities
24  TITLE:=C source code browser
25  URL:=http://cscope.sourceforge.net
26  DEPENDS:=+libncurses
27endef
28
29
30define Package/cscope/description
31    Cscope is a developer's tool for browsing source code.
32endef
33
34
35define Build/Compile
36    $(call Build/Compile/Default)
37endef
38
39
40define Package/cscope/install
41    $(INSTALL_DIR) $(1)/usr/bin
42    $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/cscope $(1)/usr/bin/
43endef
44
45
46
47$(eval $(call BuildPackage,cscope))

Archive Download the corresponding diff file



interactive