aboutsummaryrefslogtreecommitdiff
path: root/passgen.spec
blob: d791c23c2bc24f37d74ca72fcff2be700bc026d0 (plain) (blame)
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
Name: passgen
Version: 0.1.1
Release: 1%{?dist}
License: Zlib
Summary: A simple memorable and customisable password generator
Url: https://gitlab.com/nicholastay/passgen
# Sources can be obtained by
# git clone https://gitlab.com/nicholastay/passgen.git
# cd passgen
# tito build --tgz
Source0: %{name}-%{version}.tar.gz

BuildRequires: gcc
BuildRequires: make

%description
Just a password generator that makes passwds.ninja-style passwords.

Heavily inspired by a generator I used before at work, just that this time in C. (This is my first C project, please be gentle...)

%prep
%autosetup

%build
CFLAGS='-g' %make_build

%install
%make_install PREFIX=%{_prefix}

%files
%doc README.md
%license LICENCE
%{_bindir}/%{name}

%changelog
* Wed Dec 01 2021 Nicholas Tay <nick@windblume.net> 0.1.1-1
- RPM spec: add gcc, make to BuildRequires

* Wed Dec 01 2021 Nicholas Tay <nick@windblume.net> 0.1.0-1
- New package built with tito

* Wed Dec 01 2021 Nicholas Tay <nick@windblume.net>
- Initial spec