2010-06-15 18:51:21 +00:00
|
|
|
#
|
2014-03-08 00:56:34 +00:00
|
|
|
# Copyright (C) 2010-2014 OpenWrt.org
|
2010-06-15 18:51:21 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
2010-06-16 11:08:07 +00:00
|
|
|
#
|
2010-06-15 18:51:21 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=cksfv
|
|
|
|
PKG_VERSION:=1.3.14
|
2014-03-08 00:56:34 +00:00
|
|
|
PKG_RELEASE:=2
|
2010-06-15 18:51:21 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://zakalwe.fi/~shd/foss/cksfv/files
|
|
|
|
PKG_MD5SUM:=2e15289753ea0b90b6ea86993f93b383
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2010-06-16 11:08:07 +00:00
|
|
|
define Package/cksfv
|
2010-06-15 18:51:21 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=cksfv CRC32 checksum verification tool
|
|
|
|
URL:=http://zakalwe.fi/~shd/foss/cksfv/
|
|
|
|
endef
|
|
|
|
|
2010-06-16 11:08:07 +00:00
|
|
|
define Package/cksfv/description
|
2010-06-15 18:51:21 +00:00
|
|
|
cksfv is a tool for verifying CRC32 checksums.
|
|
|
|
endef
|
|
|
|
|
2010-06-16 11:08:07 +00:00
|
|
|
define Package/cksfv/install
|
2010-06-15 18:51:21 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/cksfv $(1)/usr/sbin/cksfv
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,cksfv))
|