Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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:= cifs-utils
  5. PKG_VERSION:= 6.6
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= d07152a807de6840566bbcc69a97ff6fa17fca4e09ceb4641d74882a83e67125
  8. PKG_DESCR:= network filesystem utilities
  9. PKG_SECTION:= net/fs
  10. PKG_URL:= https://wiki.samba.org/index.php/LinuxCIFS_utils
  11. PKG_SITES:= https://ftp.samba.org/pub/linux-cifs/cifs-utils/
  12. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  13. include $(ADK_TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,CIFS_UTILS,cifs-utils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. AUTOTOOL_STYLE:= autoreconf
  16. CONFIGURE_ARGS+= --disable-cifsupcall \
  17. --disable-cifsidmap \
  18. --disable-cifsacl \
  19. --disable-pam \
  20. --disable-pie \
  21. --without-libcap \
  22. --disable-systemd
  23. cifs-utils-install:
  24. $(INSTALL_DIR) $(IDIR_CIFS_UTILS)/sbin
  25. $(INSTALL_BIN) $(WRKINST)/sbin/mount.cifs \
  26. $(IDIR_CIFS_UTILS)/sbin
  27. include ${ADK_TOPDIR}/mk/pkg-bottom.mk