lantiq: Tune the XWAY subtarget cflags
[openwrt.git] / package / 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
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/mountd
18   SECTION:=utils
19   CATEGORY:=Utilities
20   TITLE:=OpenWrt automount daemon
21   DEPENDS:=@USB_SUPPORT +uci +kmod-usb-storage +kmod-fs-autofs4
22   URL:=http://www.openwrt.org
23 endef
24
25 define Package/mountd/description
26   openwrt automount daemon
27 endef
28
29 define Package/mountd/conffiles
30 /etc/config/mountd
31 endef
32
33 define Build/Compile
34         $(TARGET_CONFIGURE_OPTS) \
35                 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(PKG_BUILD_DIR)" \
36                 LDFLAGS="$(TARGET_LDFLAGS)" \
37                 $(MAKE) -C $(PKG_BUILD_DIR)
38 endef
39
40 define Package/mountd/install
41         $(INSTALL_DIR) $(1)/sbin/ $(1)/etc/config/ $(1)/etc/init.d/
42         $(INSTALL_BIN) $(PKG_BUILD_DIR)/mountd $(1)/sbin/
43         $(INSTALL_DATA) ./files/mountd.config $(1)/etc/config/mountd
44         $(INSTALL_BIN) ./files/mountd.init $(1)/etc/init.d/mountd
45 endef
46
47 $(eval $(call BuildPackage,mountd))