]> git.sesse.net Git - betaftpd/blob - betaftpd.spec
The --help text now says that nonroot is experimental (which it is).
[betaftpd] / betaftpd.spec
1 Summary: Single-threaded FTP daemon
2 Name: betaftpd
3 Version: 0.0.8pre16
4 Release: 1
5 Source0: http://betaftpd.sourceforge.net/downloads/betaftpd-%{version}.tar.gz
6 Group: Daemons/FTP
7 Provides: betaftpd
8 Copyright: GPL
9 Buildroot: %{_tmppath}/%{name}-%{version}
10
11 %description
12 BetaFTPD is a single-threaded FTP daemon. The single-threadedness
13 makes it faster than most other FTP daemons (contrary to common
14 belief), and makes it extremely light on memory. Although it lacks a
15 few functions (which you probably won't miss), the current version is
16 very small and has a decent amount of functionality. BetaFTPD is built
17 on the concept of heavy code reuse, which should hopefully make it
18 easier for other programmers to contribute.
19
20 %prep
21 %setup -q
22
23 %build
24 ./configure
25 make
26
27 %install
28 rm -rf %{buildroot}
29 mkdir -p %{buildroot}/usr/bin
30 install -s -m 755 betaftpd %{buildroot}/usr/bin
31
32 %clean
33 rm -rf %{buildroot}
34
35 %files
36 /usr/bin/betaftpd
37
38 %changelog
39 * Wed Aug 16 2000 Steinar H. Gunderson <sgunderson@bigfoot.com>
40 - included file with BetaFTPD distribution
41 - changed version number
42 - changed URL to point to SourceForge instead of xoom.com
43
44 * Wed Apr  5 2000 Sean MacLennan <seanm@netwinder.org>
45 - created initial spec file
46