mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-21 20:08:24 +00:00
586a721d3f
6efeb19 autofs: register SIGTERM for gracefull exit 01bb2b0 mount: fix SIGSEV crashes Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Copyright (C) 2009-2012 OpenWrt.org
|
|
# All rights reserved.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mountd
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/mountd.git
|
|
PKG_SOURCE_DATE:=2017-10-18
|
|
PKG_SOURCE_VERSION:=6efeb198451a46bb8039d2892986c7f625c92649
|
|
PKG_MIRROR_HASH:=af36387c30dd67f30ec9748e0b2f601f827637ca914446522793be44d5c3356d
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/mountd
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=OpenWrt automount daemon
|
|
DEPENDS:=+uci +kmod-fs-autofs4
|
|
URL:=http://www.openwrt.org
|
|
endef
|
|
|
|
define Package/mountd/description
|
|
openwrt automount daemon
|
|
endef
|
|
|
|
define Package/mountd/conffiles
|
|
/etc/config/mountd
|
|
endef
|
|
|
|
define Package/mountd/install
|
|
$(INSTALL_DIR) $(1)/sbin/ $(1)/etc/config/ $(1)/etc/init.d/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mountd $(1)/sbin/
|
|
$(INSTALL_DATA) ./files/mountd.config $(1)/etc/config/mountd
|
|
$(INSTALL_BIN) ./files/mountd.init $(1)/etc/init.d/mountd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mountd))
|