parent
40deb5e563
commit
d8e21199a3
@ -0,0 +1 @@
|
||||
/keepassxc-2.1.4-src.tar.xz
|
@ -0,0 +1,113 @@
|
||||
Name: keepassxc
|
||||
Version: 2.1.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Cross-platform password manager
|
||||
License: Boost and BSD and CC0 and GPLv3 and LGPLv2 and LGPLv2+ and LGPLv3+ and Public Domain
|
||||
URL: http://www.keepassxc.org/
|
||||
Source0: https://github.com/keepassxreboot/keepassxc/releases/download/%{version}/keepassxc-%{version}-src.tar.xz
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: qt5-qtbase-devel >= 5.2
|
||||
BuildRequires: qt5-qttools-devel >= 5.2
|
||||
BuildRequires: libgcrypt-devel >= 1.6
|
||||
BuildRequires: libmicrohttpd-devel
|
||||
BuildRequires: libXi-devel
|
||||
BuildRequires: libXtst-devel
|
||||
BuildRequires: qt5-qtx11extras-devel
|
||||
BuildRequires: zlib-devel
|
||||
|
||||
%description
|
||||
KeePassXC is a community fork of KeePassX
|
||||
KeePassXC is an application for people with extremely high demands on secure
|
||||
personal data management.
|
||||
KeePassXC saves many different information e.g. user names, passwords, urls,
|
||||
attachemts and comments in one single database. For a better management
|
||||
user-defined titles and icons can be specified for each single entry.
|
||||
Furthermore the entries are sorted in groups, which are customizable as well.
|
||||
The integrated search function allows to search in a single group or the
|
||||
complete database.
|
||||
KeePassXC offers a little utility for secure password generation. The password
|
||||
generator is very customizable, fast and easy to use. Especially someone who
|
||||
generates passwords frequently will appreciate this feature.
|
||||
The complete database is always encrypted either with AES (alias Rijndael) or
|
||||
Twofish encryption algorithm using a 256 bit key. Therefore the saved
|
||||
information can be considered as quite safe.
|
||||
|
||||
|
||||
|
||||
%prep
|
||||
%setup -n %{name}-%{version}
|
||||
|
||||
%build
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
%cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_VERBOSE_MAKEFILE=OFF \
|
||||
-DWITH_TESTS=OFF \
|
||||
-DWITH_XC_HTTP=ON \
|
||||
-DWITH_XC_AUTOTYPE=ON \
|
||||
-DWITH_XC_YUBIKEY=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
cd build
|
||||
make install DESTDIR=%{buildroot}
|
||||
|
||||
desktop-file-install \
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
--delete-original \
|
||||
--add-mime-type application/x-keepassxc \
|
||||
%{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
# Associate KDB* files
|
||||
cat > x-keepassxc.desktop << EOF
|
||||
[Desktop Entry]
|
||||
Comment=
|
||||
Hidden=false
|
||||
Icon=keepassxc.png
|
||||
MimeType=application/x-keepassxc
|
||||
Patterns=*.kdb;*.KDB;*.kdbx;*.KDBX*
|
||||
Type=MimeType
|
||||
EOF
|
||||
install -D -m 644 -p x-keepassxc.desktop \
|
||||
%{buildroot}%{_datadir}/mimelnk/application/x-keepassxc.desktop
|
||||
|
||||
%find_lang keepassx --with-qt
|
||||
|
||||
%check
|
||||
ctest -V %{?_smp_mflags}
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
update-desktop-database &> /dev/null ||:
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
fi
|
||||
update-desktop-database &> /dev/null ||:
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
desktop-file-validate %{_datadir}/applications/keepassxc.desktop &> /dev/null || :
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license COPYING LICENSE*
|
||||
%{_bindir}/keepassxc
|
||||
%{_datadir}/keepassxc
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_datadir}/mimelnk
|
||||
%{_datadir}/mime/packages/*.xml
|
||||
%{_datadir}/icons/hicolor/*/*/*keepassxc*
|
||||
%{_libdir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Sun May 14 2017 Germano Massullo <germano.massullo@gmail.com> - 2.1.4-1
|
||||
- First release on Fedora repository
|
Loading…
Reference in new issue