blob: 016cd380559a0fb0051fbfa666b145eeb9b49eaa (
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: linux-pam samba keyutils
5
6 name=cifs-utils
7 version=6.9
8 release=2
9 source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
10 cifs-utils-man.tar.xz cifs)
11
12 build () {
13 cd $name-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18
19 install -d $PKG/usr/share/man/man{1,8}
20 install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
21 install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
22
23 install -D -m 0755 $SRC/cifs $PKG/etc/rc.d/cifs
24 }
|