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