| 12345678910111213141516171819202122232425262728293031323334 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(ADK_TOPDIR)/rules.mkPKG_NAME:=		cifs-utilsPKG_VERSION:=		6.3PKG_RELEASE:=		1PKG_MD5SUM:=		93697dbc043cb4d5c66e15e281f872e5PKG_DESCR:=		network filesystem utilitiesPKG_SECTION:=		net/fsPKG_URL:=		https://wiki.samba.org/index.php/LinuxCIFS_utilsPKG_SITES:=		ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/DISTFILES:=             ${PKG_NAME}-${PKG_VERSION}.tar.bz2include $(ADK_TOPDIR)/mk/package.mk$(eval $(call PKG_template,CIFS_UTILS,cifs-utils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))AUTOTOOL_STYLE:=	autoreconfCONFIGURE_ARGS+=	--disable-cifsupcall \			--disable-cifsidmap \			--disable-cifsacl \			--disable-pie \			--without-libcap \			--disable-systemdcifs-utils-install:	$(INSTALL_DIR) $(IDIR_CIFS_UTILS)/sbin	$(INSTALL_BIN) $(WRKINST)/sbin/mount.cifs \		$(IDIR_CIFS_UTILS)/sbininclude ${ADK_TOPDIR}/mk/pkg-bottom.mk
 |