home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / C-Kermit-7.0.196-1.src.rpm / C-Kermit-7.0.196.1.cpio.gz / C-Kermit-7.0.196.1.cpio / C-Kermit.spec < prev   
Text File  |  2020-01-01  |  2KB  |  60 lines

  1. %define name         C-Kermit
  2. %define version 7.0.196
  3. %define release 1
  4. %define serial     2
  5. %define prefix     /usr
  6.  
  7. Name:         %{name}
  8. Summary:     a combined serial and network communication software package
  9. Version:     %{version}
  10. Copyright:Distributable, see COPYING.TXT
  11. Release:     %{release}
  12. Serial:     %{serial}
  13. Group:         Applications/Communications
  14. Source:     C-Kermit-%{version}.tar.gz
  15. Patch:         C-Kermit-%{version}.patch
  16. URL:             http://www.columbia.edu/kermit/ck70.html
  17. BuildRoot:/var/tmp/%{name}-%{version}-root
  18.  
  19. %description
  20. C-Kermit is a combined serial and network communication software package
  21. offering a consistent, medium-independent, cross-platform approach to
  22. connection establishment, terminal sessions, file transfer, character-set
  23. translation, and automation of communication tasks.
  24.  
  25. %prep
  26. %setup -q -n cku196
  27. %patch -p1 -b .tim 
  28.  
  29. %build
  30. make linux
  31.  
  32. %install 
  33. rm -rf $RPM_BUILD_ROOT
  34. mkdir -p $RPM_BUILD_ROOT%{prefix}/{bin,man,info}
  35. mkdir -p $RPM_BUILD_ROOT%{prefix}/man/man1
  36. make DESTDIR=$RPM_BUILD_ROOT install
  37.  
  38. strip $RPM_BUILD_ROOT%{prefix}/bin/* || :
  39.  
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42.  
  43. %files
  44. %defattr(-,root,root)
  45. %doc COPYING.TXT ckaaaa.txt ckuaaa.txt ckermit2.txt ckcbwr.txt ckubwr.txt
  46. %doc ckuins.txt ckermit.ini ckermod.ini ckurzsz.ini ckermit.k*d
  47. %doc telnet.txt security.txt iksd.txt cke*.ksc ckcplm.txt ckccfg.txt
  48. %{prefix}/bin/*
  49. %{prefix}/man/*/*
  50.  
  51. %changelog
  52. * Thu Jan 13 2000 Tim Powers <timp@redhat.com>
  53. - no longer a beta, removed the beta tag for the version
  54. - removed the gzip man pages since it is handled by our build system
  55.  
  56. * Thu Dec 23 1999 Tim Powers <timp@redhat.com>
  57. - initial build for Red Hat Linux
  58. - retarred and gzipped source so that it unloads into a dir, not the whole
  59.     builddir
  60.