florian 29313f8316 cksfv: add missing inttypes.h inclusion
Build was failing because inttypes.h did not provide a declaration for uint32_t
and friends

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39799 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-08 00:56:34 +00:00

37 lines
830 B
Makefile

#
# Copyright (C) 2010-2014 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:=cksfv
PKG_VERSION:=1.3.14
PKG_RELEASE:=2
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
define Package/cksfv
SECTION:=utils
CATEGORY:=Utilities
TITLE:=cksfv CRC32 checksum verification tool
URL:=http://zakalwe.fi/~shd/foss/cksfv/
endef
define Package/cksfv/description
cksfv is a tool for verifying CRC32 checksums.
endef
define Package/cksfv/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/cksfv $(1)/usr/sbin/cksfv
endef
$(eval $(call BuildPackage,cksfv))