summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorblocklisted2022-01-31 17:44:18 +0100
committerblocklisted2022-01-31 17:44:18 +0100
commit19bb9fd9f24e7d89325aea997888a7317a4bb935 (patch)
tree5321f526e77849b8c645f1cb257ea2bbbcf6a04b
parent990a6a92d9a1df234d01f69a385cc4a95cd5f390 (diff)
downloadaur-19bb9fd9f24e7d89325aea997888a7317a4bb935.tar.gz
fixed last update, systemd-resolved is now started as a service after install instead of being a package dependency
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
-rw-r--r--windscribe-v2-bin.install2
3 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 112dd2a1af68..f4a5899859f0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
pkgbase = windscribe-v2-bin
pkgdesc = Windscribe GUI tool for Linux
pkgver = 2.3.15_beta
- pkgrel = 3
+ pkgrel = 4
url = https://windscribe.com/guides/linux
install = windscribe-v2-bin.install
arch = x86_64
license = GPL2
depends = bash
depends = nftables
- depends = systemd-resolved
+ depends = systemd
provides = windscribe
conflicts = windscribe-cli
options = !strip
diff --git a/PKGBUILD b/PKGBUILD
index be8e02bc3696..983006d7f1e1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: blocklisted <blocklisted at protonmail dot com>
pkgname=windscribe-v2-bin
pkgver=2.3.15_beta
-pkgrel=3
+pkgrel=4
pkgdesc="Windscribe GUI tool for Linux"
arch=('x86_64')
url="https://windscribe.com/guides/linux"
license=('GPL2')
-depends=('bash' 'nftables' 'systemd-resolved')
+depends=('bash' 'nftables' 'systemd')
provides=('windscribe')
conflicts=('windscribe-cli')
options=('!strip')
diff --git a/windscribe-v2-bin.install b/windscribe-v2-bin.install
index 76c07902c112..fd6affc081b9 100644
--- a/windscribe-v2-bin.install
+++ b/windscribe-v2-bin.install
@@ -31,6 +31,8 @@ pre_install() {
post_install() {
set -e
+ systemctl enable systemd-resolved
+ systemctl start systemd-resolved
systemctl enable windscribe-helper
systemctl start windscribe-helper
}