-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c22a5c
commit 272c031
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Contributor: Bart Ribbers <[email protected]> | ||
# Maintainer: Bart Ribbers <[email protected]> | ||
pkgname=kwrited | ||
pkgver=5.16.1 | ||
pkgrel=0 | ||
pkgdesc="KDE daemon listening for wall and write messages" | ||
arch="all" | ||
url="https://www.kde.org/workspaces/plasmadesktop/" | ||
license="GPL-2.0-or-later" | ||
makedepends="extra-cmake-modules qt5-qtbase-dev kcoreaddons-dev ki18n-dev kpty-dev knotifications-dev kdbusaddons-dev" | ||
source="https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz" | ||
options="!check" # No tests available | ||
|
||
build() { | ||
cmake \ | ||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib | ||
make | ||
} | ||
|
||
package() { | ||
DESTDIR="$pkgdir" make install | ||
} | ||
|
||
sha512sums="bd46db836ffa51469374fd1f60227d1279d1b626b00b4fce3fb2e27cf8a7d770f2c12b66f28d3bf8384122d956e1b9015c68d482a0c076cf65e64c06b9884992 kwrited-5.16.1.tar.xz" |