48 lines
1.1 KiB
Bash
48 lines
1.1 KiB
Bash
# Maintainer: Danct12 <danct12@disroot.org>
|
|
# Contributor: Bernhard Landauer <bernhard@manjaro.org>
|
|
# Contributor: dodgejcr@gmail.com
|
|
# Contributor: Bhushan Shah <bhush94 at gmail dot com>
|
|
|
|
pkgname=spacebar
|
|
pkgver=24.05.0
|
|
pkgrel=1
|
|
pkgdesc="SMS and messaging application for Mobile Devices running Plasma"
|
|
arch=('x86_64' 'armv7h' 'aarch64')
|
|
url="https://community.kde.org/Plasma/Mobile"
|
|
license=('GPL-2.0-only OR GPL-3.0-only')
|
|
depends=(
|
|
'c-ares'
|
|
'futuresql-qt6'
|
|
'kconfig'
|
|
'kcoreaddons'
|
|
'kcontacts'
|
|
'kdbusaddons'
|
|
'ki18n'
|
|
'kio'
|
|
'kirigami'
|
|
'kirigami-addons'
|
|
'knotifications'
|
|
'kpeople'
|
|
'kwindowsystem'
|
|
'libphonenumber'
|
|
'modemmanager-qt'
|
|
'qcoro-qt6'
|
|
'qt6-declarative'
|
|
)
|
|
makedepends=(
|
|
'cmake'
|
|
'extra-cmake-modules'
|
|
)
|
|
source=("http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz")
|
|
sha256sums=('1ab34a700ff3f97af0bcc9cb97fbd03bbc5a41ea4ff40144ad1ed9e30584f3f5')
|
|
|
|
build() {
|
|
cmake -B build -S $pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_LIBEXECDIR=lib \
|
|
-DBUILD_TESTING=OFF
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|