samba: build and install 'smbtree', 'mount.cifs', 'umount.cifs'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-07-13 06:40:44 +02:00
parent 3d4dc0e83e
commit 69f9f98aba
2 changed files with 10 additions and 1 deletions

View File

@ -37,7 +37,8 @@ cd $PKG_BUILD/source3
--without-libtalloc \
--without-libtdb \
--without-libnetapi \
--without-cifsmount \
--with-cifsmount \
--with-cifsumount \
--without-ldap \
--without-acl-support \
--without-winbind \
@ -51,6 +52,9 @@ cd $PKG_BUILD/source3
--with-syslog \
make bin/libsmbclient.so
make bin/mount.cifs
make bin/umount.cifs
make bin/smbtree
if [ "$SAMBA_SERVER" = yes ]; then
make bin/smbd

View File

@ -6,6 +6,11 @@
PKG_DIR=`find $PACKAGES -type d -name $1`
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/smbtree $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/mount.cifs $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/umount.cifs $INSTALL/usr/bin
mkdir -p $INSTALL/usr/lib
cp -P $PKG_BUILD/source3/bin/libsmbclient.so* $INSTALL/usr/lib