]> git.sesse.net Git - betaftpd/commitdiff
Added betaftpd.spec, updated documentation accordingly.
authorsgunderson <sgunderson>
Wed, 16 Aug 2000 21:00:36 +0000 (21:00 +0000)
committersgunderson <sgunderson>
Wed, 16 Aug 2000 21:00:36 +0000 (21:00 +0000)
betaftpd.spec [new file with mode: 0644]
doc/CHANGES

diff --git a/betaftpd.spec b/betaftpd.spec
new file mode 100644 (file)
index 0000000..f9946f8
--- /dev/null
@@ -0,0 +1,46 @@
+Summary: Single-threaded FTP daemon
+Name: betaftpd
+Version: 0.0.8pre16
+Release: 1
+Source0: http://betaftpd.sourceforge.net/downloads/betaftpd-%{version}.tar.gz
+Group: Daemons/FTP
+Provides: betaftpd
+Copyright: GPL
+Buildroot: %{_tmppath}/%{name}-%{version}
+
+%description
+BetaFTPD is a single-threaded FTP daemon. The single-threadedness
+makes it faster than most other FTP daemons (contrary to common
+belief), and makes it extremely light on memory. Although it lacks a
+few functions (which you probably won't miss), the current version is
+very small and has a decent amount of functionality. BetaFTPD is built
+on the concept of heavy code reuse, which should hopefully make it
+easier for other programmers to contribute.
+
+%prep
+%setup -q
+
+%build
+./configure
+make
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}/usr/bin
+install -s -m 755 betaftpd %{buildroot}/usr/bin
+
+%clean
+rm -rf %{buildroot}
+
+%files
+/usr/bin/betaftpd
+
+%changelog
+* Wed Aug 16 2000 Steinar H. Gunderson <sgunderson@bigfoot.com>
+- included file with BetaFTPD distribution
+- changed version number
+- changed URL to point to SourceForge instead of xoom.com
+
+* Wed Apr  5 2000 Sean MacLennan <seanm@netwinder.org>
+- created initial spec file
+
index d61b6a889058808ef66c5bc50d2119f1597bbafe..a6e48f65d36ee7db276a0429e559ddf6d51679c3 100644 (file)
@@ -73,6 +73,8 @@ CHANGES-0.0.8.
 - BetaFTPD now listens on port 21.
 - Homepage moved to SourceForge (http://betaftpd.sourceforge.net/)
 - root (or any other user with uid=0) can't FTP anymore.
+- .spec file (for you RPM junkies :-) ), provided by Sean MacLennan
+  <seanm@netwinder.org>.
 
 Version 0.0.7:
 - Shadow support. (Give --enable-shadow to configure to enable it.)