kde-plasma-6/signond/Pkgfile

29 lines
636 B
Plaintext
Raw Normal View History

2024-04-14 18:43:13 +02:00
# Description: SignOn Daemon (Qt)
# URL: https://gitlab.com/accounts-sso/signond/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: graphviz qt6-tools
name=signond
version=8.61
release=1
source=(https://gitlab.com/accounts-sso/signond/-/archive/VERSION_$version/$name-VERSION_$version.tar.gz
36.patch)
build() {
cd $name-VERSION_$version
patch -Np1 -i $SRC/36.patch
sed -i \
-e '/doc/d' \
signon.pro lib/SignOn/SignOn.pro lib/plugins/plugins.pro
qmake6 PREFIX=/usr LIBDIR=/usr/lib
make
make INSTALL_ROOT=$PKG install
rm -r $PKG/usr/share/doc
}
# vim: set ts=4 et: