author | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:42:07 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:42:07 UTC |
parent | 3edc571d4551556f296868e54f089d3feb3eeebd |
.SRCINFO | +14 | -6 |
PKGBUILD | +17 | -8 |
diff --git a/.SRCINFO b/.SRCINFO index e0e58f0..bf09392 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = plasma-firewall pkgdesc = Control Panel for your system firewall - pkgver = 5.27.9 + pkgver = 5.90.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.9/plasma-firewall-5.27.9.tar.xz - source = https://download.kde.org/stable/plasma/5.27.9/plasma-firewall-5.27.9.tar.xz.sig + source = https://download.kde.org/unstable/plasma/5.90.0/plasma-firewall-5.90.0.tar.xz + source = https://download.kde.org/unstable/plasma/5.90.0/plasma-firewall-5.90.0.tar.xz.sig validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = f9c2c7d957e9c1ca74deb2f85c3523bf3714f92df669582a1568447facf97356 + sha256sums = e9c7dd426b28a4b86685d343264d4bf392db44fd526d55a45bf27cf96c09070c sha256sums = SKIP pkgname = plasma-firewall diff --git a/PKGBUILD b/PKGBUILD index 4f61d53..a17721a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,29 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=plasma-firewall -pkgver=5.27.9 +pkgver=5.90.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=('f9c2c7d957e9c1ca74deb2f85c3523bf3714f92df669582a1568447facf97356' +source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('e9c7dd426b28a4b86685d343264d4bf392db44fd526d55a45bf27cf96c09070c' '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 }