33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# Template file for 'cifs-utils'
|
|
pkgname=cifs-utils
|
|
version=6.7
|
|
revision=1
|
|
build_style=gnu-configure
|
|
make_install_args="ROOTSBINDIR=/usr/bin"
|
|
hostmakedepends="automake pkg-config libcap-ng-devel"
|
|
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"
|
|
homepage="http://wiki.samba.org/index.php/LinuxCIFS_utils"
|
|
distfiles="https://ftp.samba.org/pub/linux-cifs/$pkgname/$pkgname-$version.tar.bz2"
|
|
checksum=b2f21612474ab012e75accd167aab607a0614ff67efb56ea0f36789fa785cfab
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
# Fix musl build
|
|
sed -i ${wrksrc}/mtab.c \
|
|
-e "/#include <stdlib.h>/a #include <limits.h>" \
|
|
-e "/#include <stdlib.h>/a #include <paths.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
|
|
}
|