9cd7234d52
- Update to version 2.12.02: OBS-URL: https://build.opensuse.org/request/show/407231 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/nasm?expand=0&rev=27
119 lines
3.5 KiB
RPMSpec
119 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package nasm
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: nasm
|
|
Version: 2.12.02
|
|
Release: 0
|
|
Summary: Netwide Assembler (An x86 Assembler)
|
|
License: BSD-2-Clause
|
|
Group: Development/Languages/Other
|
|
Url: http://www.nasm.us/
|
|
Source: http://www.nasm.us/pub/nasm/releasebuilds/%{version}/nasm-%{version}.tar.xz
|
|
BuildRequires: asciidoc
|
|
BuildRequires: fdupes
|
|
BuildRequires: groff
|
|
BuildRequires: makeinfo
|
|
BuildRequires: xmlto
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
NASM is a prototype general-purpose x86 assembler. It can currently
|
|
output several binary formats, including ELF, a.out, Win32, and OS/2.
|
|
|
|
Read the licence agreement in %{_docdir}/nasm/Licence.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%package doc
|
|
Summary: Documentation for Nasm
|
|
License: LGPL-2.1+
|
|
Group: Development/Languages/Other
|
|
Requires(post): info
|
|
Requires(preun): info
|
|
Provides: nasm:%{_docdir}/nasm/nasmdoc.pdf
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
This package contains the documentation for Nasm.
|
|
|
|
%build
|
|
touch -r ./ver.c ./ver.c.stamp
|
|
TS=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
|
|
sed -i "s/__DATE__/\"$TS\"/g" ver.c
|
|
touch -r ./ver.c.stamp ./ver.c
|
|
%configure
|
|
make %{?_smp_mflags} all
|
|
make %{?_smp_mflags} -C doc html info nasmdoc.ps nasmdoc.txt
|
|
|
|
%install
|
|
install -d -m 755 %{buildroot}%{_prefix}/bin
|
|
install -d -m 755 %{buildroot}/%{_mandir}/man1
|
|
install -d -m 755 %{buildroot}/%{_docdir}/nasm
|
|
install -d -m 755 %{buildroot}/%{_docdir}/nasm/rdoff
|
|
install -d -m 755 %{buildroot}/%{_docdir}/nasm/html
|
|
install -d -m 755 %{buildroot}/%{_infodir}
|
|
make INSTALLROOT=%{buildroot} install
|
|
make INSTALLROOT=%{buildroot} rdf_install
|
|
install -m 644 AUTHORS CHANGES ChangeLog LICENSE TODO README doc/*.txt \
|
|
%{buildroot}/%{_docdir}/nasm
|
|
install -m 644 rdoff/README rdoff/doc/* \
|
|
%{buildroot}/%{_docdir}/nasm/rdoff
|
|
install -m 644 doc/html/* %{buildroot}%{_docdir}/nasm/html
|
|
install -m 644 ndisasm.1 nasm.1 rdoff/*.1 %{buildroot}%{_mandir}/man1
|
|
install -m 644 doc/info/* %{buildroot}%{_infodir}
|
|
%fdupes -s %{buildroot}%
|
|
|
|
%post doc
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%preun doc
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/ldrdf
|
|
%{_bindir}/nasm
|
|
%{_bindir}/ndisasm
|
|
%{_bindir}/rdf2bin
|
|
%{_bindir}/rdf2com
|
|
%{_bindir}/rdf2ihx
|
|
%{_bindir}/rdf2ith
|
|
%{_bindir}/rdf2srec
|
|
%{_bindir}/rdfdump
|
|
%{_bindir}/rdflib
|
|
%{_bindir}/rdx
|
|
%{_mandir}/man1/ldrdf.1%{ext_man}
|
|
%{_mandir}/man1/nasm.1%{ext_man}
|
|
%{_mandir}/man1/ndisasm.1%{ext_man}
|
|
%{_mandir}/man1/rdf2bin.1%{ext_man}
|
|
%{_mandir}/man1/rdf2com.1%{ext_man}
|
|
%{_mandir}/man1/rdf2ihx.1%{ext_man}
|
|
%{_mandir}/man1/rdf2ith.1%{ext_man}
|
|
%{_mandir}/man1/rdf2srec.1%{ext_man}
|
|
%{_mandir}/man1/rdfdump.1%{ext_man}
|
|
%{_mandir}/man1/rdflib.1%{ext_man}
|
|
%{_mandir}/man1/rdx.1%{ext_man}
|
|
|
|
%files doc
|
|
%defattr(-,root,root)
|
|
%doc %{_docdir}/nasm
|
|
%{_infodir}/nasm*
|
|
|
|
%changelog
|