-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathencrypt.spec
More file actions
48 lines (41 loc) · 1.37 KB
/
encrypt.spec
File metadata and controls
48 lines (41 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Summary: A simple, X-platform, encryption application
Name: encrypt
Version: 2025.05
Release: 1
Source: https://albinoloverats.net/downloads/%{name}.tar.xz
URL: https://albinoloverats.net/projects/%{name}
License: GPL
BuildRoot: /var/tmp/%{name}
Group: Applications/File
Requires: libgcrypt, gtk3, libcurl, xz
%description
A simple, cross platform, file encryption application---suitable for any
modern desktop or mobile operating system. The GUI, either GTK or
native, has been desigen to be common across systems and intuitive to
use, whilst still providing command-line capabilities for power-users.
%global debug_package %{nil}
%prep
%setup -q
%build
make -f Makefile all OS_OPTS=-DFEDORA_PATH_HACK
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/{bin,share/{encrypt,applications,man/man1,pixmaps,bash-completion/completions,zsh/functions/Completion/Unix}}
make install DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
/usr/bin/encrypt
/usr/bin/decrypt
/usr/share/encrypt/encrypt.glade
/usr/share/encrypt/magic
/usr/share/encrypt/encryptrc
/usr/share/applications/encrypt.desktop
/usr/share/Thunar/sendto/encrypt.desktop
/usr/share/man/man1/encrypt.1a.gz
/usr/share/pixmaps/encrypt.svg
/usr/share/pixmaps/encrypt_button.svg
/usr/share/pixmaps/encrypt_key.png
/usr/share/bash-completion/completions/encrypt
/usr/share/zsh/functions/Completion/Unix/_encrypt