aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2021-12-01 01:59:47 +1100
committerNicholas Tay <nick@windblume.net>2021-12-01 02:03:03 +1100
commit6c77932462c09e90d630100909c39ad589829c5f (patch)
tree9e7bbe40d8cf32e011142c181e038b93b057f1f9
parent452e89f7b59b1f92e80ec1e6fa2674a82d2ccfc2 (diff)
downloadpassgen-6c77932462c09e90d630100909c39ad589829c5f.tar.gz
passgen-6c77932462c09e90d630100909c39ad589829c5f.tar.bz2
passgen-6c77932462c09e90d630100909c39ad589829c5f.zip
Add in RPM spec (tested on Fedora)
-rw-r--r--passgen.spec34
1 files changed, 34 insertions, 0 deletions
diff --git a/passgen.spec b/passgen.spec
new file mode 100644
index 0000000..56a28cb
--- /dev/null
+++ b/passgen.spec
@@ -0,0 +1,34 @@
+Name: passgen
+Version: 0.0.0
+Release: 0%{?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
+
+%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>
+- Initial spec