source: projects/specs/branches/6/y/yasm/yasm-vl.spec @ 5581

Revision 5581, 2.8 KB checked in by Takemikaduchi, 12 years ago (diff)

rebuild packages

Line 
1Summary: Complete rewrite of the NASM assembler under the BSD License
2Summary(ja): BSDライセンスの元で書き直されたNASMアセンブラ
3Name: yasm
4Version: 1.0.1
5Release: 2%{?_dist_release}
6License: BSD
7Group: Development/Languages
8URL: http://www.tortall.net/projects/yasm/
9Source: http://www.tortall.net/projects/yasm/releases/yasm-%{version}.tar.gz
10
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12BuildRequires: bison byacc
13
14#%{!?_without_xmlto:BuildRequires:xmlto}
15#%{!?_without_gettextdevel:BuildRequires: gettext-devel}
16#%{?_without_gettextdevel:BuildRequires: gettext}
17
18Vendor: Project Vine
19Distribution: Vine Linux
20
21%description
22Yasm is a complete rewrite of the NASM assembler under the "new" BSD License.
23Yasm currently supports the x86 and AMD64 instruction sets,
24accepts NASM and GAS assembler syntaxes,
25outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, RDOFF2, COFF, Win32, and
26Win64 object formats, and generates source debugging information
27in STABS, DWARF 2, and CodeView8 formats.
28
29%description -l ja
30Yasm は新しい BSD ライセンスの元で書き直されたNASMアセンブラです。
31Yasm は x86 および AMD64 命令セットに対応しており
32NASM や GAS assembler の構文を binary, ELF32, ELF64, 32 および
3364-bit Mach-O, RDOFF2, COFF, Win32, and Win64
34のオブジェクトフォーマットに変換でき、
35STABS, DWARF 2, および CodeView8 フォーマット にて
36デバッグ情報を出力します。
37
38%package devel
39Summary: Header files and static libraries for yasm
40Summary(ja): yasm の ヘッダーファイルと 静的ライブラリー
41Group: Development/Libraries
42Requires: %{name} = %{version}-%{release}
43
44%description devel
45Header files and static libraries for yasm.
46
47%description  -l ja devel
48Yasmのヘッダーファイルと 静的ライブラリーです。
49
50%prep
51%setup -q
52
53%build
54%configure
55make %{?_smp_mflags}
56
57%install
58rm -rf $RPM_BUILD_ROOT
59%makeinstall
60
61%clean
62rm -rf $RPM_BUILD_ROOT
63
64%files
65%defattr(-, root, root, 0755)
66%doc Artistic.txt AUTHORS BSD.txt COPYING GNU*
67%{_bindir}/yasm
68%{_bindir}/vsyasm
69%{_bindir}/ytasm
70%{_mandir}/man1/*
71
72%files devel
73%defattr(-, root, root, 0755)
74%{_includedir}/libyasm/
75%{_includedir}/libyasm-stdint.h
76%{_includedir}/libyasm.h
77%{_libdir}/libyasm.a
78%{_mandir}/man7/*
79
80%changelog
81* Sun Feb 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp>  1.0.1-2
82- rebuild with Vine6 environment
83
84* Tue May 18 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com>  1.0.1-1
85- new upstream release
86- built with new toolchain
87
88* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.2-1
89- new upstream release
90
91* Fri Aug  1 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com>  0.7.1-1
92- new upstream release
93- applied new versioning policy
94
95* Sun Aug  5 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com>  0.6.1-0vl1
96- initial package for Vine <wishes:0120>
97
Note: See TracBrowser for help on using the repository browser.