#!/bin/mkpkg # description: Tools for mounting SMB/CIFS shares # url: https://wiki.samba.org/index.php/LinuxCIFS_utils name=cifs-utils version=7.7 release=1 depends=(keyutils libcap2 talloc) source=(https://www.samba.org/ftp/linux-cifs/$name/$name-$version.tar.bz2) sha256sums=( "2f8aae9aa5ddd73fbaf4d61e2e5e19ef54124cbf2810b626820050e7bd2f6606" ) build() { cd $name-$version autoreconf -i ./configure \ --prefix=/usr \ --sbindir=/usr/sbin \ --disable-pam \ --disable-systemd make make DESTDIR=$PKG install if [ -d $PKG/sbin ]; then mv $PKG/sbin/* $PKG/usr/sbin/ rmdir $PKG/sbin fi } signify() { untrusted comment: public key RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 } # vim: filetype=sh