build: disable the PKG_CHECK_FORMAT_SECURITY check for the failing packages
[openwrt/staging/mkresin.git] / package / system / mountd / Makefile
1 # Copyright (C) 2009-2012 OpenWrt.org
2 # All rights reserved.
3
4 include $(TOPDIR)/rules.mk
5
6 PKG_NAME:=mountd
7 PKG_VERSION:=0.1
8 PKG_RELEASE:=6
9
10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
11 PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
12 PKG_MD5SUM:=b77253ee4321d24d200fffc4f7ca3d15
13 PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
14 PKG_CHECK_FORMAT_SECURITY:=0
15
16 include $(INCLUDE_DIR)/package.mk
17
18 define Package/mountd
19 SECTION:=utils
20 CATEGORY:=Utilities
21 TITLE:=OpenWrt automount daemon
22 DEPENDS:=@USB_SUPPORT +uci +kmod-usb-storage +kmod-fs-autofs4
23 URL:=http://www.openwrt.org
24 endef
25
26 define Package/mountd/description
27 openwrt automount daemon
28 endef
29
30 define Package/mountd/conffiles
31 /etc/config/mountd
32 endef
33
34 define Build/Compile
35 $(TARGET_CONFIGURE_OPTS) \
36 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(PKG_BUILD_DIR)" \
37 LDFLAGS="$(TARGET_LDFLAGS)" \
38 $(MAKE) -C $(PKG_BUILD_DIR)
39 endef
40
41 define Package/mountd/install
42 $(INSTALL_DIR) $(1)/sbin/ $(1)/etc/config/ $(1)/etc/init.d/
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mountd $(1)/sbin/
44 $(INSTALL_DATA) ./files/mountd.config $(1)/etc/config/mountd
45 $(INSTALL_BIN) ./files/mountd.init $(1)/etc/init.d/mountd
46 endef
47
48 $(eval $(call BuildPackage,mountd))