source: projects/specs/trunk/r/ruby-bdb/ruby-bdb-vl.spec @ 521

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

import VineSeed package specs

Line 
1%define srcname bdb
2
3Summary: Ruby binding for Berkeley DB
4Summary(ja): Berkeley DB の Ruby バインディング
5Name: ruby-%{srcname}
6Version: 0.6.5
7Release: 1%{?_dist_release}
8Source0: ftp://moulon.inra.fr/pub/ruby/%{srcname}-%{version}.tar.gz
9License: GPL
10Group: Development/Libraries
11URL: http://moulon.inra.fr/ruby/bdb.html
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildRequires: ruby ruby-devel db4-devel
15Requires: ruby
16
17Vendor: Project Vine
18Distribution: Vine Linux
19
20
21%description
22This is an interface to Berkeley DB, distributed by Sleepycat
23(http://www.sleepycat.com/)
24
25%desctiption -l ja
26Ruby に Berkeley DB ライブラリへのインタフェースを提供する
27拡張ライブラリです。
28
29%prep
30%setup -q -n %{srcname}-%{version}
31
32%build
33%{ruby} extconf.rb
34%{__make}
35%{__make} test
36
37%install
38rm -rf $RPM_BUILD_ROOT
39%ifarch x86_64
40%{__make} install sitedir=$RPM_BUILD_ROOT%{_libdir}/ruby
41%else
42%{__make} install sitedir=$RPM_BUILD_ROOT/usr/lib/ruby
43%endif
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48
49%files
50%defattr(-,root,root)
51%doc Changes README* bdb.* docs examples
52%{rarchdir}/*.so
53
54
55%changelog
56* Tue Oct 14 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.5-1
57- new upstream release
58- built with db-4.6.21
59- applied new versioning policy
60- spec in UTF-8
61
62* Fri Dec 28 2007 Shu KONNO <owa@bg.wakwak.com> 0.6.0-0vl4
63- s|/usr/lib|%%{_libdir}| in install
64
65* Sun Jun  3 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.0-0vl3
66- remove Requires: db4
67
68* Sun Jun  3 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.0-0vl2
69- rebuilt for VineSeed
70- rebuilt with new db-4.3.29
71
72* Sat Jun  2 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.0-0vl1
73- new upstream release
74
75* Wed Nov  9 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.5.6-3vl2
76- rebuild for VineSeed
77
78* Wed Oct 23 2005 Atsushi SHICHI <ats7@a.email.ne.jp> 0.5.6-3vl1
79- initial build for Vine Linux
80
81* Fri Jul 15 2005 Toru Hoshina <t@momonga-linux.org>
82- (0.5.6-3m)
83- /usr/lib/ruby
84
85* Sun Jun 11 2005 TABUCHI Takaaki <tab@momonga-linux.org>
86- (0.5.6-2m)
87- fixed missing directory name by tarball
88
89* Mon May 16 2005 Kazuhiko <kazuhiko@fdiary.net>
90- (0.5.6-1m)
91- initial import to Momonga
Note: See TracBrowser for help on using the repository browser.