2019-10-07 15:35:55 +00:00
|
|
|
# Maintainer: Yury Gubich <blue@macaw.me>
|
2019-10-08 09:01:14 +00:00
|
|
|
pkgname=squawk
|
2023-11-12 22:55:32 +00:00
|
|
|
pkgver=0.2.3
|
2019-10-07 15:35:55 +00:00
|
|
|
pkgrel=1
|
2020-03-31 15:56:49 +00:00
|
|
|
pkgdesc="An XMPP desktop messenger, written on pure c++ (qt)"
|
2019-10-07 15:35:55 +00:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="https://git.macaw.me/blue/squawk"
|
2019-10-10 11:45:21 +00:00
|
|
|
license=('GPL3')
|
2024-02-04 12:44:19 +00:00
|
|
|
depends=('hicolor-icon-theme' 'desktop-file-utils' 'lmdbal' 'qxmpp-qt5')
|
2022-01-11 20:50:42 +00:00
|
|
|
makedepends=('cmake>=3.3' 'imagemagick' 'qt5-tools' 'boost')
|
2024-02-04 16:36:51 +00:00
|
|
|
optdepends=('kwallet5: secure password storage (requires rebuild)'
|
|
|
|
'kconfig5: system themes support (requires rebuild)'
|
|
|
|
'kconfigwidgets5: system themes support (requires rebuild)'
|
|
|
|
'kio5: better show in folder action (requires rebuild)')
|
2020-04-14 16:30:33 +00:00
|
|
|
|
2024-02-04 12:44:19 +00:00
|
|
|
source=("$pkgname-$pkgver.tar.gz::https://git.macaw.me/blue/$pkgname/archive/$pkgver.tar.gz")
|
|
|
|
sha256sums=('SKIP')
|
2019-10-07 15:35:55 +00:00
|
|
|
build() {
|
|
|
|
cd "$srcdir/squawk"
|
2019-11-15 13:30:29 +00:00
|
|
|
cmake . -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release
|
2023-03-27 18:45:29 +00:00
|
|
|
cmake --build .
|
2019-10-07 15:35:55 +00:00
|
|
|
}
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/squawk"
|
2023-03-27 18:45:29 +00:00
|
|
|
DESTDIR="$pkgdir/" cmake --install .
|
2019-10-07 15:35:55 +00:00
|
|
|
}
|