libaccounts-qt: initial commit, version 1.17

This commit is contained in:
Tim Biermann 2024-04-14 19:03:05 +02:00
parent 9997fdbbc1
commit fd55ed540c
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 65 additions and 0 deletions

36
libaccounts-qt/.footprint Normal file
View File

@ -0,0 +1,36 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/accounts-qt6/
drwxr-xr-x root/root usr/include/accounts-qt6/Accounts/
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Account
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/AccountService
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Application
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/AuthData
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Error
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Manager
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Provider
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/Service
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/ServiceType
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/account-service.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/account.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/accountscommon.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/application.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/auth-data.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/error.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/manager.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/manager_p.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/provider.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/service-type.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/service.h
-rw-r--r-- root/root usr/include/accounts-qt6/Accounts/utils.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/AccountsQt6/
-rw-r--r-- root/root usr/lib/cmake/AccountsQt6/AccountsQt6Config.cmake
-rw-r--r-- root/root usr/lib/cmake/AccountsQt6/AccountsQt6ConfigVersion.cmake
lrwxrwxrwx root/root usr/lib/libaccounts-qt6.so -> libaccounts-qt6.so.1.5.0
lrwxrwxrwx root/root usr/lib/libaccounts-qt6.so.1 -> libaccounts-qt6.so.1.5.0
lrwxrwxrwx root/root usr/lib/libaccounts-qt6.so.1.5 -> libaccounts-qt6.so.1.5.0
-rwxr-xr-x root/root usr/lib/libaccounts-qt6.so.1.5.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/accounts-qt6.pc

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3reO4z66GQ2v8T1ujkh+P92WWC63LnksDBa5+P8JDE0bKYOkHq8yQmZwpx2jRZ6f4L7DXphb7B4+o2aX4N8DrQ8=
SHA256 (Pkgfile) = bbdec176c99d811c79577fcc88956e251ba9d1069f8463e76d0693b37f842c6b
SHA256 (.footprint) = 13f1a3502aa4b1be4914fb585f7f66692a809d0335eefaae9749335e1acac775
SHA256 (libaccounts-qt-VERSION_1.17.tar.gz) = 6ed3e976133962c1c88f6c66928ba0d0a17a570843577d31e783dc891659e5d8

24
libaccounts-qt/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# 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: