diff options
author | Juergen Daubert <jue@jue.li> | 2011-09-02 11:59:45 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2011-09-02 12:01:07 +0200 |
commit | caab7a43919244aa1e9e1a529556c8c5ff8bf6b2 (patch) | |
tree | 03a29c246d97606dc0175cdabce9de3c9d98dff0 /cifs-utils | |
parent | 25e4c8019eb294cf05f1237aa53d0759a03f21d8 (diff) | |
download | opt-caab7a43919244aa1e9e1a529556c8c5ff8bf6b2.tar.gz opt-caab7a43919244aa1e9e1a529556c8c5ff8bf6b2.tar.xz |
cifs-utils: initial release
Diffstat (limited to 'cifs-utils')
-rw-r--r-- | cifs-utils/.footprint | 9 | ||||
-rw-r--r-- | cifs-utils/.md5sum | 1 | ||||
-rw-r--r-- | cifs-utils/Pkgfile | 17 |
3 files changed, 27 insertions, 0 deletions
diff --git a/cifs-utils/.footprint b/cifs-utils/.footprint new file mode 100644 index 000000000..32452e0ec --- /dev/null +++ b/cifs-utils/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root sbin/ +-rwxr-xr-x root/root sbin/mount.cifs +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/cifs.idmap.8.gz +-rw-r--r-- root/root usr/man/man8/mount.cifs.8.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/cifs.idmap diff --git a/cifs-utils/.md5sum b/cifs-utils/.md5sum new file mode 100644 index 000000000..6317edff0 --- /dev/null +++ b/cifs-utils/.md5sum @@ -0,0 +1 @@ +50e55aed038e55b4a7668ee628f934e4 cifs-utils-5.0.tar.bz2 diff --git a/cifs-utils/Pkgfile b/cifs-utils/Pkgfile new file mode 100644 index 000000000..ebcf5adbb --- /dev/null +++ b/cifs-utils/Pkgfile @@ -0,0 +1,17 @@ +# Description: Utilities for doing and managing mounts of the Linux CIFS filesystem +# URL: http://wiki.samba.org/index.php/LinuxCIFS_utils +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: samba keyutils + +name=cifs-utils +version=5.0 +release=1 +source=(ftp://ftp.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2) + +build () { + cd $name-$version + ./configure --prefix=/usr --mandir=/usr/man + make + make DESTDIR=$PKG install + rm -r $PKG/usr/bin +} |