mk/image.mk: Ship /init in initramfs
[openadk.git] / package / cifs-utils / Makefile
blob1ce067624e35656daf562a3245d70a6a22f610ea
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:= cifs-utils
7 PKG_VERSION:= 6.7
8 PKG_RELEASE:= 1
9 PKG_HASH:= b2f21612474ab012e75accd167aab607a0614ff67efb56ea0f36789fa785cfab
10 PKG_DESCR:= network filesystem utilities
11 PKG_SECTION:= net/fs
12 PKG_KDEPENDS:= cifs
13 PKG_URL:= https://wiki.samba.org/index.php/LinuxCIFS_utils
14 PKG_SITES:= https://ftp.samba.org/pub/linux-cifs/cifs-utils/
16 DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
18 include $(ADK_TOPDIR)/mk/package.mk
20 $(eval $(call PKG_template,CIFS_UTILS,cifs-utils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
22 AUTOTOOL_STYLE:= autoreconf
23 CONFIGURE_ARGS+= --disable-cifsupcall \
24 --disable-cifsidmap \
25 --disable-cifsacl \
26 --disable-pam \
27 --disable-pie \
28 --without-libcap \
29 --disable-systemd
31 cifs-utils-install:
32 $(INSTALL_DIR) $(IDIR_CIFS_UTILS)/sbin
33 $(INSTALL_BIN) $(WRKINST)/sbin/mount.cifs \
34 $(IDIR_CIFS_UTILS)/sbin
36 include ${ADK_TOPDIR}/mk/pkg-bottom.mk