Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 93697dbc043cb4d5c66e15e281f872e5
  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:= ftp://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-pie \
  20. --without-libcap \
  21. --disable-systemd
  22. cifs-utils-install:
  23. $(INSTALL_DIR) $(IDIR_CIFS_UTILS)/sbin
  24. $(INSTALL_BIN) $(WRKINST)/sbin/mount.cifs \
  25. $(IDIR_CIFS_UTILS)/sbin
  26. include ${ADK_TOPDIR}/mk/pkg-bottom.mk