source: projects/specs/trunk/r/rasqal/rasqal-vl.spec @ 575

Revision 575, 3.3 KB checked in by inagaki, 14 years ago (diff)

upload: rasqal, soprano

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