diff options
author | Matt Goins <mjgoins@openflows.com> | 2008-12-04 21:35:28 -0500 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2008-12-04 21:35:28 -0500 |
commit | c3b912f2506c3a150f128a77317085cea599a814 (patch) | |
tree | bec1f26bf3455a06fae6cac00e2c795d73358234 /packaging/rpm | |
parent | e7c994d6f67d380ed0de21f1500ec395eaab6640 (diff) | |
parent | 2483b7de82423d6bf0dec774526a2ca9fef3d64d (diff) |
Merge commit 'dkg/master'
Diffstat (limited to 'packaging/rpm')
-rw-r--r-- | packaging/rpm/howto | 1 | ||||
-rw-r--r-- | packaging/rpm/monkeysphere.spec | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/packaging/rpm/howto b/packaging/rpm/howto new file mode 100644 index 0000000..add951e --- /dev/null +++ b/packaging/rpm/howto @@ -0,0 +1 @@ +http://www.rpm-based.org/how-to-create-rpm-package diff --git a/packaging/rpm/monkeysphere.spec b/packaging/rpm/monkeysphere.spec new file mode 100644 index 0000000..9e32837 --- /dev/null +++ b/packaging/rpm/monkeysphere.spec @@ -0,0 +1,40 @@ +Name: monkeysphere +Summary: use the OpenPGP web of trust to verify ssh connections +Version: 0.22~pre +Release: 1 +License: GPLv3 +Group: net +URL: http://web.monkeysphere.info/ + +Source: http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/monkeysphere_%{version}.orig.tar.gz + +%description +SSH key-based authentication is tried-and-true, but it lacks a true +Public Key Infrastructure for key certification, revocation and +expiration. Monkeysphere is a framework that uses the OpenPGP web of +trust for these PKI functions. It can be used in both directions: for +users to get validated host keys, and for hosts to authenticate users. + +Monkeysphere is free software released under the GNU General Public +License (GPL). + +%prep +%setup -q + +%build +%{__make} + +%install +%{__rm} -rf %{buildroot} +Prefix=%{buildroot}/usr +%makeinstall + +%clean +%{__rm} -rf %{buildroot} + +%files +%defattr(-, root, root, 0755) + +%changelog +* Sat Nov 22 2008 - +- Initial release. |