source: projects/specs/branches/6/m/mmap/mmap-vl.spec @ 521

Revision 521, 1.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: The Mmap class implement memory-mapped file objects for Ruby
2Name: mmap
3Version: 0.2.6
4Release: 1%{?_dist_release}
5URL: ftp://moulon.inra.fr/pub/ruby/
6Source0: ftp://moulon.inra.fr/pub/ruby/%{name}-%{version}.tar.gz
7License: Ruby's
8Group: Development/Libraries
9BuildRoot: %{_tmppath}/%{name}-root
10BuildRequires: ruby
11Requires: ruby
12
13%description
14The Mmap class implement memory-mapped file objects for Ruby
15
16%prep
17%setup -q
18
19%build
20ruby extconf.rb
21#make sitearchdir=%{rarchdir}
22make
23make test
24
25%install
26rm -rf %{buildroot}
27make DESTDIR=%{buildroot} sitearchdir=%{buildroot}%{rarchdir} install
28
29%clean
30rm -rf %{buildroot}
31
32%files
33%defattr(-,root,root)
34%doc doc Changes README.en mmap.html mmap.rd
35%{rarchdir}/mmap.so
36
37%changelog
38* Sat Oct 04 2008 Shu KONNO <owa@bg.wakwak.com> 0.2.6-1vl5
39- applied new versioning policy
40
41* Sat Dec 29 2006 Shu KONNO <owa@bg.wakwak.com> 0.2.6-0vl1
42- new upstream release
43- dropt option sitearchdir to make
44
45* Tue Oct  7 2003 IWAI, Masaharu <iwai@alib.jp> 0.2.2-0vl1
46- new upstream release
47- build with ruby-1.8.0
48
49* Wed Apr 23 2003 IWAI Masaharu <iwai@alib.jp> 0.2.0-0vl1
50- first release for Vine Linux
51
52* Sun Jan 19 2003 IWAI Masaharu <iwai@alib.jp> 0.2.0-1
53- Initial build.
54
55
Note: See TracBrowser for help on using the repository browser.