kde-plasma-6/libaccounts-qt/Pkgfile

25 lines
644 B
Plaintext

# Description: Qt-based client library for the accounts database
# URL: https://gitlab.com/accounts-sso/libaccounts-qt
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: libaccounts-glib qt6-base
name=libaccounts-qt
version=1.17
release=1
source=(https://gitlab.com/accounts-sso/libaccounts-qt/-/archive/VERSION_$version/$name-VERSION_$version.tar.gz)
build() {
cd $name-VERSION_$version
sed -i \
-e 's,SUBDIRS += Accounts tests,SUBDIRS += Accounts,' \
-e '/doc/d' \
accounts-qt.pro
qmake6 PREFIX=/usr LIBDIR=/usr/lib
make
make INSTALL_ROOT=$PKG install
}
# vim: set ts=4 et: