67 lines
2.3 KiB
Bash
67 lines
2.3 KiB
Bash
# Template file for 'sssd'
|
|
pkgname=sssd
|
|
version=2.4.0
|
|
revision=4
|
|
build_style=gnu-configure
|
|
# configure checks sys.version[:3] for Python versioning, so 3.10 becomes 3.1;
|
|
# until this is fixed upstream, manually define am_cv_python_version to circumvent
|
|
configure_args="--without-selinux --without-semanage --without-libwbclient
|
|
--disable-cifs-idmap-plugin --without-samba --with-os=fedora
|
|
--with-test-dir=/dev/shm --with-python3-bindings --with-pid-path=/run
|
|
--with-sudo-lib-path=/usr/lib/sssd --without-python2-bindings
|
|
am_cv_python_version=${py3_ver}"
|
|
hostmakedepends="pkg-config nscd bind xmlcatmgr docbook-xsl"
|
|
makedepends="pam-devel popt-devel talloc-devel tdb-devel tevent-devel ldb-devel
|
|
ding-libs-devel libldap-devel mit-krb5-devel c-ares-devel glib-devel
|
|
libxslt-devel nss-devel libnfsidmap-devel http-parser-devel p11-kit-devel
|
|
jansson-devel python3-devel libcurl-devel cmocka-devel check-devel"
|
|
make_dirs="/var/lib/sss/db 0700 root root
|
|
/var/lib/sss/secrets 0700 root root
|
|
/var/lib/sss/pubconf/krb5.include.d 0700 root root
|
|
/var/lib/sss/pipes/private 0700 root root
|
|
/var/lib/sss/mc 0700 root root
|
|
/var/lib/sss/keytabs 0700 root root
|
|
/var/lib/sss/gpo_cache 0700 root root
|
|
/var/lib/sss/db 0700 root root
|
|
/etc/sssd/ 0700 root root
|
|
/var/sssd/conf.d 0700 root root"
|
|
short_desc="System Security Services Daemon"
|
|
maintainer="Yuusha Spacewolf <xyuusha@paranoici.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://sssd.io"
|
|
distfiles="https://github.com/SSSD/sssd/releases/download/${pkgname}-${version//./_}/${pkgname}-${version}.tar.gz"
|
|
checksum=13d7eeff15e582279f70a3aad32daeb40d3749ec14947a4eded35adce7490cdd
|
|
python_version=3
|
|
nocross="configure attempts to run compiled output"
|
|
# These modules in /usr/lib/sssd are required by sssd-python3
|
|
shlib_provides="libsss_util.so libsss_crypt.so libsss_debug.so"
|
|
|
|
do_check() {
|
|
export CK_TIMEOUT_MULTIPLIER=10
|
|
make check VERBOSE=yes
|
|
unset CK_TIMEOUT_MULTIPLIER
|
|
}
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/etc/rc.d
|
|
|
|
vsv sssd
|
|
}
|
|
|
|
sssd-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/include
|
|
}
|
|
}
|
|
|
|
sssd-python3_package() {
|
|
depends="sssd"
|
|
short_desc+=" - Python3 bindings"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}
|
|
}
|
|
}
|