blob: 3dfa7ecb53404788d43526db082fa717731a631e (
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.10
8 release=1
9 source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
10 $name-$version.patch $name-man.tar.xz cifs)
11
12 build () {
13 cd $name-$version
14
15 patch -p1 -i $SRC/$name-$version.patch
16
17 install -d $PKG/{sbin,usr/share/man/man{1,8}}
18 install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
19 install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
20
21 autoreconf -i
22 ./configure --prefix=/usr
23 make
24 make DESTDIR=$PKG install
25
26 install -D -m 0755 $SRC/cifs $PKG/etc/rc.d/cifs
27 }
|