]> git.pld-linux.org Git - packages/3store3.git/blob - 3store3.spec
- converted to UTF-8
[packages/3store3.git] / 3store3.spec
1 Summary:        3store RDF engine
2 Summary(pl.UTF-8):   Silnik RDF 3store
3 Name:           3store3
4 Version:        3.0.17
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/threestore/%{name}-%{version}.tar.gz
9 # Source0-md5:  6e5dceaa076e603e618384e01da6a50a
10 URL:            http://threestore.sourceforge.net/
11 BuildRequires:  db-devel >= 4.1
12 BuildRequires:  glib2-devel >= 2.2.0
13 BuildRequires:  mysql-devel
14 BuildRequires:  ncurses-devel
15 BuildRequires:  pkgconfig
16 BuildRequires:  rasqal-devel >= 0.9.11
17 BuildRequires:  readline-devel
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 3store is an RDF(S) triplestore, written in C and backed by MySQL. It
22 provides a RDF query engine that supports SPARQL and RDQL, over HTTP
23 or through a C API or command line inferface.
24
25 It can handle 100M triple knowledge bases, white retaining fast
26 response times, and provides RDFS inference capabilities.
27
28 %description -l pl.UTF-8
29 3store to triplestore dla RDF(S) napisany w C z backendem MySQL.
30 Udostępnia silnik zapytań RDF obsługujący SPARQL i RDQL po HTTP,
31 poprzez API C lub z linii poleceń.
32
33 Może obsłużyć bazy wiedzy rzędu 100M zachowując krótkie czasy
34 odpowiedzi; udostępnia możliwości wnioskowania RDFS.
35
36 %package devel
37 Summary:        Header files for 3store library
38 Summary(pl.UTF-8):   Pliki nagłówkowe biblioteki 3store
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}-%{release}
41 Requires:       db-devel >= 4.1
42 Requires:       glib2-devel >= 2.2.0
43 Requires:       mysql-devel
44 Requires:       rasqal-devel >= 0.9.11
45
46 %description devel
47 Header files for 3store library.
48
49 %description devel -l pl.UTF-8
50 Pliki nagłówkowe biblioteki 3store.
51
52 %package static
53 Summary:        Static 3store library
54 Summary(pl.UTF-8):   Statyczna biblioteka 3store
55 Group:          Development/Libraries
56 Requires:       %{name}-devel = %{version}-%{release}
57
58 %description static
59 Static 3store library.
60
61 %description static -l pl.UTF-8
62 Statyczna biblioteka 3store.
63
64 %prep
65 %setup -q
66
67 %build
68 %configure
69 %{__make}
70
71 %install
72 rm -rf $RPM_BUILD_ROOT
73
74 %{__make} install \
75         DESTDIR=$RPM_BUILD_ROOT
76
77 %clean
78 rm -rf $RPM_BUILD_ROOT
79
80 %post   -p /sbin/ldconfig
81 %postun -p /sbin/ldconfig
82
83 %files
84 %defattr(644,root,root,755)
85 %doc AUTHORS ChangeLog README RELEASE-NOTES TODO
86 %attr(755,root,root) %{_bindir}/ts-*
87 %attr(755,root,root) %{_libdir}/lib3store.so.*.*.*
88 %{_datadir}/3store3
89 %{_mandir}/man1/ts-*.1*
90
91 %files devel
92 %defattr(644,root,root,755)
93 %attr(755,root,root) %{_libdir}/lib3store.so
94 %{_libdir}/lib3store.la
95 %{_includedir}/3store3
96 %{_pkgconfigdir}/3store3.pc
97
98 %files static
99 %defattr(644,root,root,755)
100 %{_libdir}/lib3store.a
This page took 0.098205 seconds and 3 git commands to generate.