blob: 201f298b828f12c2d88d66dcbde038a1bcdd25ce (
plain)
1 # Description: Utilities for doing and managing mounts of the Linux CIFS filesystem
2 # URL: http://wiki.samba.org/index.php/LinuxCIFS_utils
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: samba keyutils
5
6 name=cifs-utils
7 version=6.7
8 release=1
9 source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
10 cifs)
11
12 build () {
13 cd $name-$version
14 autoreconf -i
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 install -D -m 0755 $SRC/cifs $PKG/etc/rc.d/cifs
19 }
|