-
Notifications
You must be signed in to change notification settings - Fork 692
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also use the release tarball rather than the archive, which gets rid of the unsightly developer's warning in the keepass UI. have to compile WITH_XC_KEESHARE=ON per issue documented on <keepassxreboot/keepassxc#2810>; should be fixed in keepass 2.4.1
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,17 @@ | |
# Maintainer: Orson Teodoro <[email protected]> | ||
|
||
pkgname=keepassxc | ||
pkgver=2.3.4 | ||
pkgver=2.4.0 | ||
pkgrel=0 | ||
pkgdesc="Community-driven port of the Windows application Keepass Password Safe" | ||
url="https://keepassxc.org/" | ||
arch="all" | ||
license="GPL-3.0 BSD-3-Clause CC0-1.0 LGPL-2.0-only LGPL-2.1-only \ | ||
LGPL-3.0-or-later Nokia-Qt-exception-1.1 MIT BSL-1.0" | ||
depends="icu-libs" | ||
makedepends="cmake qt5-qtbase-dev qt5-qttools-dev libxtst-dev \ | ||
makedepends="cmake qt5-qtbase-dev qt5-qttools-dev libxtst-dev qt5-qtsvg-dev libqrencode-dev \ | ||
qt5-qtx11extras-dev libgcrypt-dev libgpg-error-dev argon2-dev zlib-dev" | ||
source="$pkgname-$pkgver.tar.gz::https://github.com/keepassxreboot/$pkgname/archive/$pkgver.tar.gz" | ||
source="https://github.com/keepassxreboot/$pkgname/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz" | ||
builddir="$srcdir"/$pkgname-$pkgver | ||
subpackages="$pkgname-doc" | ||
|
||
|
@@ -24,6 +24,7 @@ build() { | |
cmake -DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DWITH_XC_KEESHARE=ON \ | ||
-DKEEPASSXC_BUILD_TYPE=Release . | ||
make | ||
} | ||
|
@@ -44,4 +45,4 @@ check() { | |
make test | ||
} | ||
|
||
sha512sums="630d4d1f77c44c27f3d27a1908c80a94265af9aae8774d80726f86f635eee6a10d8a426b0157ad03efe9f5111d7d67f5c785962ec3715c8374b9f38788fab863 keepassxc-2.3.4.tar.gz" | ||
sha512sums="b7295f5983237606efd236955dc73d477992d944e547eeb2c3a267d846e70ce6f83e489f58e3bd9b5bb21decabd9052a4ea7b98bd98e8283abbb678ae19e5559 keepassxc-2.4.0-src.tar.xz" |