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