| 1 | Summary: A portable x86 assembler which uses Intel-like syntax
|
|---|
| 2 | Name: nasm
|
|---|
| 3 | Version: 2.11.08
|
|---|
| 4 | Release: 1%{?dist}
|
|---|
| 5 | License: BSD
|
|---|
| 6 | Group: Development/Languages
|
|---|
| 7 | URL: http://www.nasm.us
|
|---|
| 8 | #define svn_url e:/trees/nasm/trunk
|
|---|
| 9 | %define svn_url http://svn.netlabs.org/repos/ports/nasm/trunk
|
|---|
| 10 | %define svn_rev 1148
|
|---|
| 11 |
|
|---|
| 12 | Source0: %{name}-%{version}%{?svn_rev:-r%{svn_rev}}.zip
|
|---|
| 13 | Source1: http://www.nasm.us/pub/nasm/releasebuilds/%{version}/%{name}-%{version}-xdoc.tar.bz2
|
|---|
| 14 |
|
|---|
| 15 | BuildRequires: perl
|
|---|
| 16 | BuildRequires: autoconf
|
|---|
| 17 | #Requires(post): /sbin/install-info
|
|---|
| 18 | #Requires(preun): /sbin/install-info
|
|---|
| 19 |
|
|---|
| 20 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|---|
| 21 |
|
|---|
| 22 | %package rdoff
|
|---|
| 23 | Summary: Tools for the RDOFF binary format, sometimes used with NASM
|
|---|
| 24 | Group: Development/Tools
|
|---|
| 25 |
|
|---|
| 26 | %package doc
|
|---|
| 27 | Summary: Documentation for NASM
|
|---|
| 28 | BuildRequires: texinfo
|
|---|
| 29 | #BuildRequires: ghostscript, texinfo
|
|---|
| 30 | BuildArch: noarch
|
|---|
| 31 | # For arch to noarch conversion
|
|---|
| 32 | Obsoletes: %{name}-doc < %{version}-%{release}
|
|---|
| 33 |
|
|---|
| 34 | %description
|
|---|
| 35 | NASM is the Netwide Assembler, a free portable assembler for the Intel
|
|---|
| 36 | 80x86 microprocessor series, using primarily the traditional Intel
|
|---|
| 37 | instruction mnemonics and syntax.
|
|---|
| 38 |
|
|---|
| 39 | %description doc
|
|---|
| 40 | This package contains documentation for the Netwide Assembler (NASM),
|
|---|
| 41 | in HTML, info, PostScript, and text formats.
|
|---|
| 42 |
|
|---|
| 43 | %description rdoff
|
|---|
| 44 | Tools for the operating-system independent RDOFF binary format, which
|
|---|
| 45 | is sometimes used with the Netwide Assembler (NASM). These tools
|
|---|
| 46 | include linker, library manager, loader, and information dump.
|
|---|
| 47 |
|
|---|
| 48 | %package debug
|
|---|
| 49 | Summary: HLL debug data for exception handling support
|
|---|
| 50 |
|
|---|
| 51 | %description debug
|
|---|
| 52 | %{summary}.
|
|---|
| 53 |
|
|---|
| 54 | %prep
|
|---|
| 55 | %if %{?svn_rev:%(sh -c 'if test -f "%{_sourcedir}/%{name}-%{version}-r%{svn_rev}.zip" ; then echo 1 ; else echo 0 ; fi')}%{?!svn_rev):0}
|
|---|
| 56 | %setup -q
|
|---|
| 57 | %else
|
|---|
| 58 | %setup -n "%{name}-%{version}" -Tc
|
|---|
| 59 | svn export %{?svn_rev:-r %{svn_rev}} %{svn_url} . --force
|
|---|
| 60 | rm -f "%{_sourcedir}/%{name}-%{version}%{?svn_rev:-r%{svn_rev}}.zip"
|
|---|
| 61 | (cd .. && zip -SrX9 "%{_sourcedir}/%{name}-%{version}%{?svn_rev:-r%{svn_rev}}.zip" "%{name}-%{version}")
|
|---|
| 62 | %endif
|
|---|
| 63 | tar xjf %{SOURCE1} --strip-components 1
|
|---|
| 64 |
|
|---|
| 65 | %build
|
|---|
| 66 | sh autogen.sh
|
|---|
| 67 | export LDFLAGS="-Zbin-files -Zhigh-mem -Zomf -Zargs-wild -Zargs-resp"
|
|---|
| 68 | # as long as ghostscript is not there as rpm, take care that ps2pdf.cmd and gsos2
|
|---|
| 69 | # are found in the path
|
|---|
| 70 | export PS2PDF=ps2pdf.cmd
|
|---|
| 71 | %configure
|
|---|
| 72 | make everything %{?_smp_mflags}
|
|---|
| 73 | gzip -9f doc/nasmdoc.ps
|
|---|
| 74 | gzip -9f doc/nasmdoc.txt
|
|---|
| 75 |
|
|---|
| 76 | %install
|
|---|
| 77 | rm -rf $RPM_BUILD_ROOT
|
|---|
| 78 | make INSTALLROOT=$RPM_BUILD_ROOT install install_rdf
|
|---|
| 79 | install -d $RPM_BUILD_ROOT/%{_infodir}
|
|---|
| 80 | install -t $RPM_BUILD_ROOT/%{_infodir} doc/info/*
|
|---|
| 81 |
|
|---|
| 82 | %clean
|
|---|
| 83 | rm -rf ${RPM_BUILD_ROOT}
|
|---|
| 84 |
|
|---|
| 85 | #%post
|
|---|
| 86 | #if [ -e %{_infodir}/nasm.info.gz ]; then
|
|---|
| 87 | # /sbin/install-info %{_infodir}/nasm.info.gz %{_infodir}/dir || :
|
|---|
| 88 | #fi
|
|---|
| 89 |
|
|---|
| 90 | #%preun
|
|---|
| 91 | #if [ $1 = 0 -a -e %{_infodir}/nasm.info.gz ]; then
|
|---|
| 92 | # /sbin/install-info --delete %{_infodir}/nasm.info.gz %{_infodir}/dir || :
|
|---|
| 93 | #fi
|
|---|
| 94 |
|
|---|
| 95 | %files
|
|---|
| 96 | %doc AUTHORS CHANGES README TODO
|
|---|
| 97 | %{_bindir}/nasm.exe
|
|---|
| 98 | %{_bindir}/ndisasm.exe
|
|---|
| 99 | %{_mandir}/man1/nasm*
|
|---|
| 100 | %{_mandir}/man1/ndisasm*
|
|---|
| 101 | %{_infodir}/nasm.info*
|
|---|
| 102 |
|
|---|
| 103 | %files doc
|
|---|
| 104 | %doc doc/html doc/nasmdoc.txt.gz doc/nasmdoc.ps.gz doc/nasmdoc.pdf
|
|---|
| 105 |
|
|---|
| 106 | %files rdoff
|
|---|
| 107 | %{_bindir}/ldrdf.exe
|
|---|
| 108 | %{_bindir}/rdf2bin.exe
|
|---|
| 109 | %{_bindir}/rdf2ihx.exe
|
|---|
| 110 | %{_bindir}/rdf2com.exe
|
|---|
| 111 | %{_bindir}/rdfdump.exe
|
|---|
| 112 | %{_bindir}/rdflib.exe
|
|---|
| 113 | %{_bindir}/rdx.exe
|
|---|
| 114 | %{_bindir}/rdf2ith.exe
|
|---|
| 115 | %{_bindir}/rdf2srec.exe
|
|---|
| 116 | %{_mandir}/man1/rd*
|
|---|
| 117 | %{_mandir}/man1/ld*
|
|---|
| 118 |
|
|---|
| 119 | %files debug
|
|---|
| 120 | %{_bindir}/*.dbg
|
|---|
| 121 |
|
|---|
| 122 | %changelog
|
|---|
| 123 | * Thu Apr 30 2015 Silvan Scherrer <silvan.scherrer@aroa.ch> 2.11.8-1
|
|---|
| 124 | - update to 2.11.8
|
|---|