summaryrefslogtreecommitdiff
path: root/package/cifs-utils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-04-23 16:15:46 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-04-23 16:15:46 +0200
commit2838bc1e8e67492c116c888cb735678e957c9144 (patch)
tree7a14bc4df49df2992a99637e320a32e69528e6aa /package/cifs-utils
parente7b339113c5bd6a0de09efdf79719244ce892731 (diff)
add cifs-utils package
Diffstat (limited to 'package/cifs-utils')
-rw-r--r--package/cifs-utils/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/cifs-utils/Makefile b/package/cifs-utils/Makefile
new file mode 100644
index 000000000..5e77fafb5
--- /dev/null
+++ b/package/cifs-utils/Makefile
@@ -0,0 +1,26 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= cifs-utils
+PKG_VERSION:= 6.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 371e007a201be90c16497cd9bd5e2553
+PKG_DESCR:= CIFS utilities
+PKG_SECTION:= net/fs
+PKG_URL:= https://wiki.samba.org/index.php/LinuxCIFS_utils
+PKG_SITES:= ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,CIFS_UTILS,cifs-utils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+cifs-utils-install:
+ $(INSTALL_DIR) $(IDIR_CIFS_UTILS)/usr/sbin
+ $(INSTALL_BIN) $(WRKINST)/sbin/mount.cifs \
+ $(IDIR_CIFS_UTILS)/usr/sbin
+
+include ${TOPDIR}/mk/pkg-bottom.mk