summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartchus2022-07-09 13:49:10 +0200
committerMartchus2022-07-09 13:49:10 +0200
commite9c69481649a6786eb07154d07de3817d0fc685f (patch)
tree2635314ebb2e71b2bb565e4f19ef69af7d7c644e
parent5eaa0071935345e4664f8ebe479da19ea3d1120b (diff)
downloadaur-e9c69481649a6786eb07154d07de3817d0fc685f.tar.gz
Use library dependencies
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD5
2 files changed, 7 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3196a1ab0c77..c25fceb6e4c5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = passwordmanager
pkgdesc = A simple password store using AES-256-CBC encryption via OpenSSL
pkgver = 4.1.9
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Martchus/passwordmanager
arch = i686
arch = x86_64
@@ -15,8 +15,9 @@ pkgbase = passwordmanager
makedepends = mesa
makedepends = kirigami2
depends = qt5-base
- depends = qtutilities
- depends = passwordfile
+ depends = libqtutilities.so
+ depends = libpasswordfile.so
+ depends = libc++utilities.so
depends = openssl
depends = libxkbcommon-x11
depends = desktop-file-utils
diff --git a/PKGBUILD b/PKGBUILD
index a350dad4f5a2..ea646dd70b88 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,11 +9,12 @@ _quick_gui=${PASSWORD_MANAGER_QUICK_GUI:-ON}
_reponame=passwordmanager
pkgname=passwordmanager
pkgver=4.1.9
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
pkgdesc='A simple password store using AES-256-CBC encryption via OpenSSL'
license=('GPL')
-depends=('qt5-base' 'qtutilities' 'passwordfile' 'openssl' 'libxkbcommon-x11' 'desktop-file-utils' 'xdg-utils')
+depends=('qt5-base' 'libqtutilities.so' 'libpasswordfile.so' 'libc++utilities.so' 'openssl'
+ 'libxkbcommon-x11' 'desktop-file-utils' 'xdg-utils')
makedepends=('cmake' 'ninja' 'qt5-tools' 'mesa' 'kirigami2')
url="https://github.com/Martchus/${_reponame}"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz")