Merge commit 'jrollins/master'
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Tue, 25 Nov 2008 17:16:16 +0000 (12:16 -0500)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Tue, 25 Nov 2008 17:16:16 +0000 (12:16 -0500)
packaging/rpm/howto [new file with mode: 0644]
packaging/rpm/monkeysphere.spec [new file with mode: 0644]

diff --git a/packaging/rpm/howto b/packaging/rpm/howto
new file mode 100644 (file)
index 0000000..add951e
--- /dev/null
@@ -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 (file)
index 0000000..5bfc774
--- /dev/null
@@ -0,0 +1,47 @@
+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
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: libgnutls-dev
+
+%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
+%configure --disable-debug
+%{__make}
+
+%install
+%{__rm} -rf %{buildroot}
+%makeinstall
+%find_lang %{name}
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files -f %{name}.lang
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog INSTALL NEWS TODO README COPYING
+%{_bindir}/monkeysphere
+%{_datadir}/monkeysphere/
+
+%changelog
+* Sat Nov 22 2008 - 
+- Initial release.