opt/cifs-utils/Pkgfile

25 lines
713 B
Plaintext
Raw Normal View History

2011-09-02 11:59:45 +02:00
# 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: linux-pam samba keyutils
2011-09-02 11:59:45 +02:00
name=cifs-utils
2019-04-09 14:28:11 +02:00
version=6.9
release=2
2015-05-23 11:22:30 +02:00
source=(https://download.samba.org/pub/linux-cifs/$name/$name-$version.tar.bz2
2018-03-15 15:15:08 +01:00
cifs-utils-man.tar.xz cifs)
2011-09-02 11:59:45 +02:00
build () {
cd $name-$version
2018-03-15 15:15:08 +01:00
2016-02-23 12:11:34 +01:00
./configure --prefix=/usr
2011-09-02 11:59:45 +02:00
make
make DESTDIR=$PKG install
2018-03-15 15:15:08 +01:00
install -d $PKG/usr/share/man/man{1,8}
2019-04-09 14:28:11 +02:00
install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
2018-03-15 15:15:08 +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
}