source: projects/specs/branches/6/r/rasqal/rasqal-vl.spec @ 1850

Revision 1850, 3.4 KB checked in by inagaki, 14 years ago (diff)

rebuilt with rpm-4.8.1

Line 
1Name:      rasqal
2Summary:   Rasqal RDF Query Library
3Version:   0.9.20
4Release:   1%{?_dist_release}
5
6Group:     System Environment/Libraries
7License:   LGPL/Apache 2.0
8URL:       http://librdf.org/rasqal/
9
10Source:    http://download.librdf.org/source/%{name}-%{version}.tar.gz
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13BuildRequires: raptor-devel >= 1.4.18
14BuildRequires: pcre-devel
15BuildRequires: libxml2-devel
16BuildRequires: mpfr-devel
17Requires: raptor >= 1.4.18
18
19%description
20Rasqal is a library providing full support for querying Resource
21Description Framework (RDF) including parsing query syntaxes, constructing
22the queries, executing them and returning result formats.  It currently
23handles the RDF Data Query Language (RDQL) and SPARQL Query language.
24
25%package devel
26Summary: Libraries, includes etc to develop with the Rasqal RDF query library
27Group: Development/Libraries
28Requires: rasqal = %{version}-%{release}
29Requires: raptor-devel >= 1.4.18
30
31%description devel
32Libraries, includes etc to develop with the Rasqal RDF query language library.
33
34%prep
35%setup -q
36
37%build
38%configure --enable-release --with-raptor=system --disable-static
39
40%{__make} OPTIMIZE="$RPM_OPT_FLAGS"
41
42%install
43[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
44
45install -d $RPM_BUILD_ROOT%{_mandir}/man1
46install -d $RPM_BUILD_ROOT%{_mandir}/man3
47
48%makeinstall
49
50rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
51
52%clean
53[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
54
55%post -p /sbin/ldconfig
56
57%postun -p /sbin/ldconfig
58
59%files
60%defattr(-, root, root)
61%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
62%doc *.html
63%{_libdir}/librasqal*.so.*
64%{_bindir}/roqet
65%{_mandir}/man1/roqet.1*
66%{_mandir}/man3/librasqal.3*
67
68%files devel
69%defattr(-, root, root)
70%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
71%doc LICENSE-2.0.txt NOTICE
72%doc docs/README.html
73%doc %{_datadir}/gtk-doc/html
74%{_bindir}/rasqal-config
75%{_libdir}/librasqal*.so
76%{_libdir}/pkgconfig/rasqal.pc
77%{_includedir}/*
78%{_mandir}/man1/rasqal-config.1*
79
80
81%changelog
82* Mon Sep 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.20-1
83- new upstream release
84- rebuilt with rpm-4.8.1
85
86* Sun Mar 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.19-1
87- new upstream release
88
89* Sun Feb  6 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.17-1
90- new upstream release
91- built with new toolchain
92
93* Wed Aug 26 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.16-1
94- new upstream release
95
96* Sat Mar 29 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-1
97- fix release
98- drop .a
99
100* Thu Feb 21 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-0vl2
101- drop .la
102
103* Wed Dec 12 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-0vl1
104- new upstream release
105
106* Fri May 18 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.14-0vl1
107- initial release for VineSeed
108
109* Wed Aug 11 2005  Dave Beckett <dave.beckett@bristol.ac.uk>
110- Update Source:
111- Use %%makeinstall
112
113* Wed Aug 10 2005  Dave Beckett <dave.beckett@bristol.ac.uk>
114- Use %%configure.
115
116* Fri Jul 28 2005  Dave Beckett <dave.beckett@bristol.ac.uk>
117- Updated for gtk-doc locations
118
119* Fri Oct 22 2004 <Dave.Beckett@bristol.ac.uk>
120- License now LGPL/Apache 2
121- Added LICENSE-2.0.txt and NOTICE
122
123* Wed May 5 2004 <Dave.Beckett@bristol.ac.uk>
124- Ship roqet and roqet.1
125
126* Sat May 1 2004 <Dave.Beckett@bristol.ac.uk>
127- Requires raptor 1.3.0
128
129* Mon Feb 24 2004 <Dave.Beckett@bristol.ac.uk>
130- Requires raptor
131
132* Mon Aug 11 2003 <Dave.Beckett@bristol.ac.uk>
133- Initial packaging
Note: See TracBrowser for help on using the repository browser.