]> git.pld-linux.org Git - packages/fwhois.git/commitdiff
almost raw
authorJan Rękorajski <baggins@pld-linux.org>
Thu, 19 Aug 1999 20:07:26 +0000 (20:07 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fwhois.spec -> 1.1

fwhois.spec [new file with mode: 0644]

diff --git a/fwhois.spec b/fwhois.spec
new file mode 100644 (file)
index 0000000..cd1d323
--- /dev/null
@@ -0,0 +1,40 @@
+Summary: A finger-style whois program.
+Name: fwhois
+Version: 1.00
+Release: 11
+Copyright: BSD
+Group: Applications/Internet
+Source: ftp://sunsite.unc.edu/pub/Linux/distributions/slackware/source/n/tcpip/fwhois-1.00.tar.gz
+Prefix: %{_prefix}
+Buildroot: /var/tmp/%{name}-root
+
+%description
+The fwhois program is a different style of the whois program.  Both
+fwhois and whois query Internet whois databases to find information
+about system users.  Fwhois is smaller and more compact than whois, and
+runs in a different manner.
+
+Install fwhois if you or your system's users need a program for querying
+whois databases.  You may also want to install whois, and then decide for
+yourself which program you prefer. 
+
+%prep
+%setup -q
+
+%build
+gcc $RPM_OPT_FLAGS -s fwhois.c -o fwhois
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT/%{_prefix}/bin
+install -s -m755 fwhois $RPM_BUILD_ROOT/%{_prefix}/bin/fwhois
+ln -sf fwhois $RPM_BUILD_ROOT/%{_prefix}/bin/whois
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc README
+/%{_prefix}/bin/fwhois
+/%{_prefix}/bin/whois
This page took 0.035127 seconds and 4 git commands to generate.