27 lines
820 B
Plaintext
27 lines
820 B
Plaintext
# Description: QtKeychain is a QT API to store passwords and other secret data securely
|
|
# URL: https://github.com/frankosterfeld/qtkeychain
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libsecret qt6-tools
|
|
|
|
name=qtkeychain6
|
|
version=0.14.2
|
|
release=1
|
|
source=(https://github.com/frankosterfeld/qtkeychain/archive/$version/qtkeychain-$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -S qtkeychain-$version -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_INSTALL_LIBEXECDIR=lib/$name \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-D BUILD_WITH_QT6=ON \
|
|
-D BUILD_WITH_QT5=OFF \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
|
|
rm -fr $PKG/usr/share/qt6*
|
|
}
|