summaryrefslogtreecommitdiff
path: root/cifs-utils/Pkgfile
blob: 3919c30c0fdd8aaf445756461e088db76cec351e (plain)
    1 # Description: Utilities for doing and managing mounts of the Linux CIFS filesystem
    2 # URL: https://wiki.samba.org/index.php/LinuxCIFS_utils
    3 # Maintainer: Juergen Daubert, jue at crux dot nu
    4 # Depends on: linux-pam samba keyutils
    5 
    6 name=cifs-utils
    7 version=7.0
    8 release=1
    9 source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
   10 	$name-man.tar.xz cifs)
   11 
   12 build () {
   13 	cd $name-$version
   14 
   15 	install -d $PKG/{sbin,usr/share/man/man{1,8}}
   16 	install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
   17 	install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
   18 	ln -s mount.cifs.8 $PKG/usr/share/man/man8/mount.smb3.8
   19 
   20 	./configure --prefix=/usr --with-pamdir=/lib/security
   21 	make
   22 	make DESTDIR=$PKG install
   23 
   24 	install -D -m 0755 $SRC/cifs $PKG/etc/rc.d/cifs
   25 }

Generated by cgit