15469568db
A new version 1.10 of ccrypt encryption tools package has been published in late 2012. The old version 1.9 dates back to 2009. Link to changelog: http://ccrypt.sourceforge.net/ChangeLog October 18, 2012: Release 1.10. This release fixes a number of minor portability issues and minor bugs. The ccrypt core functionality has been factored into a convenience library libccrypt.a. A ccguess program was added to assist in the recovery of mistyped keys. Improved error checking and fixed minor compiler warnings. Minor improvements to emacs support, and added a --disable-emacs configuration option. Thanks to bornlibra23 and Johannes Ruscheinski for bug reports. I have tested the version 1.10 on ar71xx/wndr3700. A patch to update ccrypt to 1.10 is included. Signed-off-by: hannu.nyman@iki.fi Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@35635 3c298f89-4303-0410-b956-a3cf2f4a3e73
38 lines
862 B
Makefile
38 lines
862 B
Makefile
#
|
|
# Copyright (C) 2009-2010 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:=ccrypt
|
|
PKG_VERSION:=1.10
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/ccrypt
|
|
PKG_MD5SUM:=44ddd763465c254df83f5d38851d04d7
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ccrypt
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=ccrypt is a utility for encrypting and decrypting files and streams
|
|
URL:=http://ccrypt.sourceforge.net/
|
|
endef
|
|
|
|
define Package/ccrypt/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ccrypt $(1)/usr/bin/
|
|
ln -s ccrypt $(1)/usr/bin/ccencrypt
|
|
ln -s ccrypt $(1)/usr/bin/ccdecrypt
|
|
ln -s ccrypt $(1)/usr/bin/ccat
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ccrypt))
|