9edfe7dd13
* Change git packages to xz * Update mirror checksums in packages where they are used * Change a few source tarballs to xz if available upstream * Remove unused lines in packages we're touching, requested by jow- and blogic * We're relying more on xz-utils so add official mirror as primary source, master site as secondary. * Add SHA256 checksums to multiple git tarball packages Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# Copyright (C) 2009-2012 OpenWrt.org
|
|
# All rights reserved.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mountd
|
|
PKG_VERSION:=2016-09-30
|
|
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/mountd.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=3dd115bb4046521986abe78bc488dfd6b95e5a6e
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
|
PKG_MIRROR_MD5SUM:=40baff09ee09ab7b80ec4786c1e7c9ec69726c776f435244d225b765bd5992b7
|
|
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:=@USB_SUPPORT +uci +kmod-usb-storage +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))
|