2011-09-02 11:59:45 +02:00
|
|
|
# Description: Utilities for doing and managing mounts of the Linux CIFS filesystem
|
2020-06-06 13:00:05 +02:00
|
|
|
# URL: https://wiki.samba.org/index.php/LinuxCIFS_utils
|
2011-09-02 11:59:45 +02:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2019-04-09 14:52:23 +02:00
|
|
|
# Depends on: linux-pam samba keyutils
|
2011-09-02 11:59:45 +02:00
|
|
|
|
|
|
|
name=cifs-utils
|
2020-09-04 12:27:09 +02:00
|
|
|
version=6.11
|
2019-12-20 14:27:31 +01:00
|
|
|
release=1
|
2015-05-23 11:22:30 +02:00
|
|
|
source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
|
2019-12-20 14:27:31 +01:00
|
|
|
$name-$version.patch $name-man.tar.xz cifs)
|
2011-09-02 11:59:45 +02:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2019-12-20 14:27:31 +01:00
|
|
|
|
|
|
|
patch -p1 -i $SRC/$name-$version.patch
|
|
|
|
|
|
|
|
install -d $PKG/{sbin,usr/share/man/man{1,8}}
|
|
|
|
install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
|
|
|
|
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
|
|
|
|
|
|
|
|
autoreconf -i
|
2016-02-23 12:11:34 +01:00
|
|
|
./configure --prefix=/usr
|
2011-09-02 11:59:45 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2019-12-20 14:27:31 +01:00
|
|
|
|
2013-01-21 16:37:31 +01:00
|
|
|
install -D -m 0755 $SRC/cifs $PKG/etc/rc.d/cifs
|
2011-09-02 11:59:45 +02:00
|
|
|
}
|