openssl: update to 3.4.0
[openadk.git] / package / autofs / Makefile
blob63d41c44f6ccef3a5fe48f878d5a3a32b7ef75b7
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
6 PKG_NAME:= autofs
7 PKG_VERSION:= 5.1.9
8 PKG_RELEASE:= 1
9 PKG_HASH:= 87e6af6a03794b9462ea519781e50e7d23b5f7c92cd59e1142c85d2493b3c24b
10 PKG_DESCR:= automount filesystems
11 PKG_SECTION:= net/fs
12 PKG_DEPENDS:= libtirpc
13 PKG_BUILDDEP:= libtirpc
14 PKG_SITES:= https://www.kernel.org/pub/linux/daemons/autofs/v5/
16 include $(ADK_TOPDIR)/mk/package.mk
18 $(eval $(call PKG_template,AUTOFS,autofs,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
20 CONFIGURE_ARGS+= --with-libtirpc
22 autofs-install:
23 $(INSTALL_DIR) $(IDIR_AUTOFS)/usr/lib/autofs
24 $(CP) $(WRKINST)/usr/lib/autofs/*.so \
25 $(IDIR_AUTOFS)/usr/lib/autofs
26 $(INSTALL_DIR) $(IDIR_AUTOFS)/usr/sbin
27 $(INSTALL_BIN) $(WRKINST)/usr/sbin/automount \
28 $(IDIR_AUTOFS)/usr/sbin
30 include $(ADK_TOPDIR)/mk/pkg-bottom.mk