655310f4f7
OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/nasm?expand=0&rev=29
75 lines
2.2 KiB
RPMSpec
75 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package nasm
|
|
#
|
|
# Copyright (c) 2017 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.13.01
|
|
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: fdupes
|
|
|
|
%description
|
|
NASM is a prototype general-purpose x86 assembler. It can currently output
|
|
several binary formats, including ELF, a.out, Win32, and OS/2.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
touch -r ./version.h ./version.h.stamp
|
|
TS=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
|
|
sed -i "s/__DATE__/\"$TS\"/g" version.h
|
|
touch -r ./version.h.stamp ./version.h
|
|
%configure
|
|
make %{?_smp_mflags} all
|
|
|
|
%install
|
|
make INSTALLROOT=%{buildroot} install rdf_install
|
|
%fdupes -s %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS CHANGES ChangeLog LICENSE README
|
|
%{_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}
|
|
|
|
%changelog
|