blob: 54a58de223e73e9dbfa889c19f9935e8feb39aa5 (
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=5.2
8 release=1
9 source=(ftp://ftp.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man
14 make
15 make DESTDIR=$PKG install
16 }
|