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