diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/cifs-utils/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/cifs-utils/MAKEPKG')
| -rw-r--r-- | opt/cifs-utils/MAKEPKG | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/opt/cifs-utils/MAKEPKG b/opt/cifs-utils/MAKEPKG new file mode 100644 index 0000000..1afcb48 --- /dev/null +++ b/opt/cifs-utils/MAKEPKG @@ -0,0 +1,37 @@ +#!/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 |
