[package] update loop-aes to 3.2h (#6277)
[openwrt/svn-archive/archive.git] / utils / rcs / Makefile
1 #
2 # Copyright (C) 2006-2009 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:=rcs
11 PKG_VERSION:=5.7
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
16 PKG_MD5SUM:=4c8e896f2d2446fa593c6f1601a4fb75
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/$(PKG_NAME)
21 SECTION:=utils
22 CATEGORY:=Utilities
23 TITLE:=The GNU Revision Control System
24 URL:=http://www.gnu.org/software/$(PKG_NAME)/
25 endef
26
27 define Package/$(PKG_NAME)/desctiption
28 The Revision Control System (RCS) manages multiple revisions of files. RCS
29 automates the storing, retrieval, logging, identification, and merging of
30 revisions. RCS is useful for text that is revised frequently, for example
31 programs, documentation, graphics, papers, and form letters.
32 endef
33
34 define Package/$(PKG_NAME)/install
35 $(INSTALL_DIR) $(1)/usr/bin
36 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/{ci,co,ident,merge,rcs,rcsclean,rcsdiff,rcsmerge,rlog} $(1)/usr/bin
37 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/rcsfreeze.sh $(1)/usr/bin/rcsfreeze
38 endef
39
40 $(eval $(call BuildPackage,$(PKG_NAME)))