]> git.pld-linux.org Git - packages/liblrdf.git/blob - liblrdf.spec
2c51634a1f31a56326101b6633ccf542d5d89553
[packages/liblrdf.git] / liblrdf.spec
1 Summary:        Library to manipulate RDF files describing LADSPA plugins
2 Summary(pl):    Biblioteka do przetwarzania plików RDF opisuj±cych wtyczki LADSPA
3 Name:           liblrdf
4 Version:        0.3.4
5 Release:        1
6 License:        GPL
7 Group:          Libraries
8 Source0:        http://plugin.org.uk/lrdf/%{name}-%{version}.tar.gz
9 # Source0-md5:  ebff54c723563761587c830a9c962fff
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  libraptor-devel >= 0.9.11
13 BuildRequires:  libtool
14 BuildRequires:  ladspa-devel
15 BuildRequires:  pkgconfig
16 Requires:       ladspa-common
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 This is a library to make it easy to manipulate RDF files describing
21 LADSPA plugins. It can also be used for general RDF manipulation. It
22 can read RDF/XML and N3 files and export N3 files.
23
24 %description -l pl
25 Ta biblioteka powsta³a, aby u³atwiæ przetwarzanie plików RDF
26 opisuj±cych wtyczki LADSPA. Mo¿e byæ u¿ywana tak¿e do ogólnego
27 przetwarzania RDF. Jest w stanie czytaæ pliki RDF/XML i N3 oraz
28 eksportowaæ do plików N3.
29
30 %package devel
31 Summary:        liblrdf header files
32 Summary(pl):    Pliki nag³ówkowe liblrdf
33 Group:          Development/Libraries
34 Requires:       %{name} = %{version}
35
36 %description devel
37 liblrdf library header files.
38
39 %description devel -l pl
40 Pliki nag³ówkowe biblioteki liblrdf.
41
42 %package static
43 Summary:        Static liblrdf library
44 Summary(pl):    Statyczna biblioteka liblrdf
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{version}
47
48 %description static
49 Static liblrdf library.
50
51 %description static -l pl
52 Statyczna biblioteka liblrdf.
53
54 %prep
55 %setup -q
56
57 %build
58 %{__libtoolize}
59 %{__aclocal}
60 %{__autoconf}
61 %{__autoheader}
62 %{__automake}
63 %configure
64
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS ChangeLog README
82 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
83 %{_datadir}/ladspa/rdf/ladspa.rdfs
84
85 %files devel
86 %defattr(644,root,root,755)
87 %attr(755,root,root) %{_libdir}/lib*.so
88 %{_libdir}/lib*.la
89 %{_includedir}/*.h
90 %{_pkgconfigdir}/*.pc
91
92 %files static
93 %defattr(644,root,root,755)
94 %{_libdir}/lib*.a
This page took 0.026552 seconds and 2 git commands to generate.