2023-09-14 19:31:09 +00:00
|
|
|
# Maintainer: Anthony Wang <a at exozy dot me>
|
|
|
|
# Contributor: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# Contributor: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
|
2023-09-14 20:51:07 +00:00
|
|
|
_pkgname=konsole
|
|
|
|
pkgname=$_pkgname-osc52
|
2024-08-24 22:35:35 +00:00
|
|
|
pkgver=24.08.0
|
2024-05-23 22:54:19 +00:00
|
|
|
pkgrel=1
|
2023-09-14 19:31:09 +00:00
|
|
|
arch=(x86_64)
|
|
|
|
url='https://apps.kde.org/konsole/'
|
|
|
|
pkgdesc='KDE terminal emulator patched with OSC52 copy support'
|
2024-05-23 22:54:19 +00:00
|
|
|
license=(GPL-2.0-or-later
|
|
|
|
LGPL-2.0-or-later)
|
2024-02-28 14:46:00 +00:00
|
|
|
groups=(kde-applications
|
|
|
|
kde-utilities)
|
|
|
|
depends=(glibc
|
|
|
|
gcc-libs
|
|
|
|
icu
|
|
|
|
kbookmarks
|
|
|
|
kcolorscheme
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
kglobalaccel
|
|
|
|
kguiaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kparts
|
|
|
|
kpty
|
|
|
|
kservice
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
qt6-5compat
|
|
|
|
qt6-base
|
|
|
|
qt6-multimedia
|
|
|
|
sh)
|
|
|
|
makedepends=(extra-cmake-modules
|
|
|
|
kdoctools)
|
2023-09-14 19:31:09 +00:00
|
|
|
optdepends=('keditbookmarks: to manage bookmarks')
|
2023-09-14 20:51:07 +00:00
|
|
|
provides=($_pkgname)
|
|
|
|
conflicts=($_pkgname)
|
|
|
|
source=(https://download.kde.org/stable/release-service/$pkgver/src/$_pkgname-$pkgver.tar.xz{,.sig}
|
2023-09-14 20:58:47 +00:00
|
|
|
osc52.patch)
|
2024-08-24 22:35:35 +00:00
|
|
|
sha256sums=('0095f1afc4e4a4cd36a12a2927e090e62fb0d016d38914bc858af568b7416101'
|
2023-09-14 19:31:09 +00:00
|
|
|
'SKIP'
|
2024-08-24 22:35:35 +00:00
|
|
|
'a21d966b713072c016f899befe502802901edde2787d34301325ed50a1ceb06d')
|
2023-09-14 19:31:09 +00:00
|
|
|
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
|
|
|
|
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 # Christoph Feck <cfeck@kde.org>
|
|
|
|
D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker <heiko.becker@kde.org>
|
|
|
|
|
|
|
|
prepare() {
|
2023-09-14 20:58:47 +00:00
|
|
|
patch -d $_pkgname-$pkgver -p1 < osc52.patch
|
2023-09-14 19:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2023-09-14 20:51:07 +00:00
|
|
|
cmake -B build -S $_pkgname-$pkgver \
|
2023-09-14 19:31:09 +00:00
|
|
|
-DBUILD_TESTING=OFF
|
|
|
|
cmake --build build
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
|
|
}
|