blob: 292ff23f88baead41920ac2366577ca6a4f01437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Francis Banyikwa <mhogomchungu at gmail dot com>
# Contributor: Leonardo Santana Vieira <leosanvieira at gmail dot com>
pkgname=qcheckgmail
_pkgname=qCheckGMail
pkgver=2.2.0
pkgrel=1
pkgdesc="Qt/C++ multiple gmail account checker"
arch=("i686" "x86_64")
url="http://mhogomchungu.github.io/qCheckGMail/"
license=("GPL")
makedepends=("cmake" "extra-cmake-modules")
source=("https://github.com/mhogomchungu/qCheckGMail/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.xz")
sha256sums=('60b85a828448f8679810a12dfc9c1f058c9f9eaab21293b2d5110e5fab1e125d')
optdepends=('plasma-desktop: support KDE Plasma tray icon and tooltip instead of Qt counterparts'
'kwallet: support for storing credentials in kwallet'
'libsecret: support for storing credentials in libsecret')
prepare() {
cd "$srcdir/${_pkgname}-${pkgver}"
mkdir -p build
if pacman -Qs "KF5" > /dev/null ; then
buildKF5Support="true"
else
buildKF5Support="false"
fi
if pacman -Qs "kwallet" > /dev/null ; then
skipkde="false"
else
skipkde="true"
fi
if pacman -Qs "libsecret" > /dev/null ; then
skipsecret="false"
else
skipsecret="true"
fi
}
build() {
cd "$srcdir/${_pkgname}-${pkgver}/build"
cmake -DKF5=$buildKF5Support \
-DNOKDESUPPORT=$skipkde \
-DNOSECRETSUPPORT=$skipsecret \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RELEASE . ..
make
}
package() {
cd "$srcdir/${_pkgname}-${pkgver}/build"
make DESTDIR=${pkgdir} install
}
|