a2ad6a02a3
Closes: #12482 [via git-merge-pr]
32 lines
1.2 KiB
Bash
32 lines
1.2 KiB
Bash
# Template file for 'cifs-utils'
|
|
pkgname=cifs-utils
|
|
version=6.8
|
|
revision=1
|
|
build_style=gnu-configure
|
|
make_install_args="ROOTSBINDIR=/usr/bin"
|
|
hostmakedepends="automake pkg-config libcap-ng-devel python3-docutils"
|
|
makedepends="mit-krb5-devel talloc-devel libcap-ng-devel samba-devel keyutils-devel pam-devel"
|
|
short_desc="CIFS filesystem user-space tools"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://wiki.samba.org/index.php/LinuxCIFS_utils"
|
|
distfiles="https://ftp.samba.org/pub/linux-cifs/$pkgname/$pkgname-$version.tar.bz2"
|
|
checksum=e7d1f6050c43f21f82cd77e288eb756755effd22f0c310fc2c525df9d41dff79
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
# Fix musl build
|
|
sed -i ${wrksrc}/mtab.c \
|
|
-e "/#include <stdlib.h>/a #include <limits.h>"
|
|
sed -i ${wrksrc}/getcifsacl.c \
|
|
-e "/#include <stdlib.h>/a #include <endian.h>" \
|
|
-e "/#include <stdlib.h>/a #include <linux/limits.h>"
|
|
sed -i ${wrksrc}/setcifsacl.c \
|
|
-e "/#include <stdlib.h>/a #include <paths.h>" \
|
|
-e "/#include <stdlib.h>/a #include <endian.h>" \
|
|
-e "/#include <stdlib.h>/a #include <linux/limits.h>"
|
|
}
|
|
post_install() {
|
|
chmod +s ${DESTDIR}/usr/bin/mount.cifs
|
|
rm -rf ${DESTDIR}/usr/include
|
|
}
|