23 lines
681 B
Plaintext
23 lines
681 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: qt5
|
|
|
|
name=qtkeychain
|
|
version=0.9.1
|
|
release=1
|
|
source=(https://github.com/frankosterfeld/$name/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_INSTALL_LIBEXECDIR=lib/$name \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DLIBSECRET_SUPPORT=OFF
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -fr $PKG/usr/share/qt5/translations
|
|
}
|