nasm.spec
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:3k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. Summary: The Netwide Assembler, a portable x86 assembler with Intel-like syntax
  2. Name: nasm
  3. Version: 0.98
  4. Release: 1
  5. Copyright: Freely Distributable
  6. Group: Development/Languages
  7. Source: ftp://ftp.us.kernel.org/pub/software/devel/nasm/source/nasm-%{version}.tar.gz
  8. URL: http://www.cryogen.com/Nasm/
  9. BuildRoot: /tmp/rpm-build-nasm
  10. Prefix: /usr
  11. %package doc
  12. Summary: Extensive documentation for NASM
  13. Group: Development/Languages
  14. Prereq: /sbin/install-info
  15. %package rdoff
  16. Summary: Tools for the RDOFF binary format, sometimes used with NASM.
  17. Group: Development/Tools
  18. %description
  19. NASM is the Netwide Assembler, a free portable assembler for the Intel
  20. 80x86 microprocessor series, using primarily the traditional Intel
  21. instruction mnemonics and syntax.
  22. %description doc
  23. Extensive documentation for the Netwide Assembler, NASM, in HTML,
  24. info, PostScript and text formats.
  25. %description rdoff
  26. Tools for the operating-system independent RDOFF binary format, which
  27. is sometimes used with the Netwide Assembler (NASM).  These tools
  28. include linker, library manager, loader, and information dump.
  29. %prep
  30. %setup
  31. %build
  32. CFLAGS="$RPM_OPT_FLAGS" LDFLAGS=-s ./configure --prefix=/usr
  33. make everything
  34. %install
  35. mkdir -p "$RPM_BUILD_ROOT"
  36. mkdir -p "$RPM_BUILD_ROOT"/usr/bin
  37. mkdir -p "$RPM_BUILD_ROOT"/usr/man/man1
  38. mkdir -p "$RPM_BUILD_ROOT"/usr/info
  39. DOC="$RPM_BUILD_ROOT"/usr/doc/nasm-%{version}
  40. rm -rf "$DOC"
  41. mkdir -p "$DOC"
  42. mkdir -p "$DOC"/rdoff
  43. rm -f "$RPM_BUILD_ROOT"/usr/info/nasm.*
  44. make INSTALLROOT="$RPM_BUILD_ROOT" docdir=/usr/doc/nasm-%{version} install_everything
  45. gzip -9 "$RPM_BUILD_ROOT"/usr/info/nasm.*
  46. gzip -9 "$DOC"/*.txt "$DOC"/*.ps
  47. cp Changes Licence MODIFIED Readme Wishlist *.doc changed.asm "$DOC"
  48. cp rdoff/README rdoff/Changes "$DOC"/rdoff
  49. %clean
  50. rm -rf "$RPM_BUILD_ROOT"
  51. %post doc
  52. /sbin/install-info "$RPM_INSTALL_PREFIX"/info/nasm.info.gz "$RPM_INSTALL_PREFIX"/info/dir
  53. %preun doc
  54. if [ $1 = 0 ]; then
  55.   /sbin/install-info --delete "$RPM_INSTALL_PREFIX"/info/nasm.info.gz "$RPM_INSTALL_PREFIX"/info/dir
  56. fi
  57. %files
  58. %attr(-,root,root) /usr/bin/nasm
  59. %attr(-,root,root) /usr/bin/ndisasm
  60. %attr(-,root,root) %doc /usr/man/man1/nasm.1
  61. %attr(-,root,root) %doc /usr/man/man1/ndisasm.1
  62. %attr(-,root,root) %doc /usr/doc/nasm-%{version}/Licence
  63. %files doc
  64. %attr(-,root,root) %doc /usr/info/nasm.info*.gz
  65. %attr(-,root,root) %doc /usr/doc/nasm-%{version}/*
  66. %files rdoff
  67. %attr(-,root,root) /usr/bin/ldrdf
  68. %attr(-,root,root) /usr/bin/rdf2bin
  69. %attr(-,root,root) /usr/bin/rdf2com
  70. %attr(-,root,root) /usr/bin/rdfdump
  71. %attr(-,root,root) /usr/bin/rdflib
  72. %attr(-,root,root) /usr/bin/rdx
  73. %attr(-,root,root) %doc /usr/doc/nasm-%{version}/rdoff/*