Makefile 854 B

12345678910111213141516171819202122232425262728
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= autofs
  5. PKG_VERSION:= 5.1.3
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= e96eebfe3ed5fb1a30f4510f538198affde223e370c6dc2bed9780309272b1bf
  8. PKG_DESCR:= automount filesystems
  9. PKG_SECTION:= net/fs
  10. PKG_DEPENDS:= libtirpc
  11. PKG_BUILDDEP:= libtirpc
  12. PKG_SITES:= https://www.kernel.org/pub/linux/daemons/autofs/v5/
  13. include $(ADK_TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,AUTOFS,autofs,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  15. AUTOTOOL_STYLE:= autoreconf
  16. CONFIGURE_ARGS+= --with-libtirpc
  17. autofs-install:
  18. $(INSTALL_DIR) $(IDIR_AUTOFS)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/autofs \
  20. $(IDIR_AUTOFS)/usr/bin
  21. include $(ADK_TOPDIR)/mk/pkg-bottom.mk