33 lines
890 B
Bash
33 lines
890 B
Bash
# Template file for 'qtkeychain'
|
|
pkgname=qtkeychain-qt5
|
|
version=0.9.1
|
|
revision=1
|
|
wrksrc="${pkgname%-*}-${version}"
|
|
build_style=cmake
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libsecret-devel qt5-tools-devel"
|
|
short_desc="Platform-independent Qt5 API for storing passwords securely"
|
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/frankosterfeld/qtkeychain"
|
|
distfiles="https://github.com/frankosterfeld/${pkgname%-*}/archive/v${version}.tar.gz"
|
|
checksum=9c2762d9d0759a65cdb80106d547db83c6e9fdea66f1973c6e9014f867c6f28e
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-host-tools qt5-tools-devel"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
qtkeychain-qt5-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|