author | Antonio Rojas
<arojas@archlinux.org> 2023-12-20 22:13:34 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-12-20 22:13:34 UTC |
parent | 8b078c3b12d2a1c1b96d668495285f0109c9beef |
.SRCINFO | +14 | -6 |
PKGBUILD | +17 | -8 |
diff --git a/.SRCINFO b/.SRCINFO index 814ebf7..0f8d09f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = plasma-firewall pkgdesc = Control Panel for your system firewall - pkgver = 5.27.10 + pkgver = 5.91.0 pkgrel = 1 url = https://kde.org/plasma-desktop/ arch = x86_64 @@ -8,17 +8,25 @@ pkgbase = plasma-firewall license = GPL license = LGPL makedepends = extra-cmake-modules - depends = systemsettings - optdepends = iproute2: netstat backend + depends = gcc-libs + depends = glibc + depends = kauth + depends = kcmutils + depends = kconfig + depends = kcoreaddons + depends = ki18n + depends = qt6-base + depends = qt6-declarative optdepends = firewalld: firewalld backend + optdepends = iproute2: netstat backend optdepends = ufw: ufw backend - source = https://download.kde.org/stable/plasma/5.27.10/plasma-firewall-5.27.10.tar.xz - source = https://download.kde.org/stable/plasma/5.27.10/plasma-firewall-5.27.10.tar.xz.sig + source = https://download.kde.org/unstable/plasma/5.91.0/plasma-firewall-5.91.0.tar.xz + source = https://download.kde.org/unstable/plasma/5.91.0/plasma-firewall-5.91.0.tar.xz.sig validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = 755a6a00848f536e567ea9672b4fa70af958a875ab7651e2edc75bbb661c84cc + sha256sums = dfde88784928c10d6d54219daa7b9db6dcd787a9d81f1b99a900f093d2fff184 sha256sums = SKIP pkgname = plasma-firewall diff --git a/PKGBUILD b/PKGBUILD index 7e4ae67..a9808cd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,29 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=plasma-firewall -pkgver=5.27.10 +pkgver=5.91.0 _dirver=$(echo $pkgver | cut -d. -f1-3) pkgrel=1 pkgdesc='Control Panel for your system firewall' arch=(x86_64) url='https://kde.org/plasma-desktop/' license=(GPL LGPL) -source=(https://download.kde.org/stable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) -depends=(systemsettings) +depends=(gcc-libs + glibc + kauth + kcmutils + kconfig + kcoreaddons + ki18n + qt6-base + qt6-declarative) makedepends=(extra-cmake-modules) -optdepends=('iproute2: netstat backend' - 'firewalld: firewalld backend' +optdepends=('firewalld: firewalld backend' + 'iproute2: netstat backend' 'ufw: ufw backend') groups=(plasma) -sha256sums=('755a6a00848f536e567ea9672b4fa70af958a875ab7651e2edc75bbb661c84cc' +source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('dfde88784928c10d6d54219daa7b9db6dcd787a9d81f1b99a900f093d2fff184' 'SKIP') validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell <jr@jriddell.org> '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org> @@ -23,8 +31,9 @@ validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com> build() { - cmake -B build -S $pkgname-$pkgver \ - -DLIBEXEC_INSTALL_DIR=lib + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_LIBEXECDIR=lib \ + -DBUILD_TESTING=OFF cmake --build build }