You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.4 KiB
87 lines
2.4 KiB
13 years ago
|
%global maj 0
|
||
|
|
||
|
Name: serd
|
||
|
Version: 0.5.0
|
||
|
Release: 3%{?dist}
|
||
|
Summary: A lightweight C library for RDF syntax
|
||
|
|
||
|
Group: System Environment/Libraries
|
||
|
License: ISC
|
||
|
URL: http://drobilla.net/software/serd/
|
||
|
Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2
|
||
|
|
||
|
BuildRequires: doxygen
|
||
|
BuildRequires: graphviz
|
||
|
BuildRequires: glib2-devel
|
||
|
BuildRequires: python
|
||
|
|
||
|
%description
|
||
|
%{name} is a lightweight C library for RDF syntax which supports reading and
|
||
|
writing Turtle and NTriples.
|
||
|
|
||
|
Serd is not intended to be a swiss-army knife of RDF syntax, but rather is
|
||
|
suited to resource limited or performance critical applications (e.g.
|
||
|
converting many gigabytes of NTriples to Turtle), or situations where a
|
||
|
simple reader/writer with minimal dependencies is ideal (e.g. in LV2
|
||
|
implementations or embedded applications).is a library to make the use of
|
||
|
LV2 plugins as simple as possible for applications.
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development libraries and headers for %{name}
|
||
|
Group: Development/Libraries
|
||
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
||
|
|
||
|
%description devel
|
||
|
%{name} is a lightweight C library for RDF syntax which supports reading and
|
||
|
writing Turtle and NTriples.
|
||
|
|
||
|
This package contains the headers and development libraries for %{name}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
# we'll run ldconfig
|
||
|
sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript
|
||
|
|
||
|
%build
|
||
|
export CFLAGS="%{optflags}"
|
||
|
./waf configure \
|
||
|
--prefix=%{_prefix} \
|
||
|
--libdir=%{_libdir} \
|
||
|
--mandir=%{_mandir} \
|
||
|
--datadir=%{_datadir} \
|
||
|
--docdir=%{_docdir}/%{name}-devel-%{version} \
|
||
|
--test \
|
||
|
--docs
|
||
|
./waf build -v %{?_smp_mflags}
|
||
|
|
||
|
%install
|
||
|
DESTDIR=%{buildroot} ./waf install
|
||
|
chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.*
|
||
|
|
||
|
%post -p /sbin/ldconfig
|
||
|
|
||
|
%postun -p /sbin/ldconfig
|
||
|
|
||
|
%files
|
||
|
%doc AUTHORS ChangeLog README COPYING
|
||
|
%{_libdir}/lib%{name}-%{maj}.so.*
|
||
|
%{_bindir}/serdi
|
||
|
%{_mandir}/man1/serdi.1*
|
||
|
|
||
|
%files devel
|
||
|
%{_libdir}/lib%{name}-%{maj}*.so
|
||
|
%{_libdir}/pkgconfig/%{name}*.pc
|
||
|
%{_includedir}/%{name}-%{maj}/
|
||
|
%{_docdir}/%{name}-devel-%{version}
|
||
|
%{_mandir}/man3/*.3*
|
||
|
|
||
|
%changelog
|
||
|
* Sat Jan 14 2012 Brendan Jones <brendan.jones.it@gmail.com> - 0.5.0-3
|
||
|
- Move man1 file, furtherqualify wildcards.
|
||
|
|
||
|
* Sat Jan 14 2012 Brendan Jones <brendan.jones.it@gmail.com> - 0.5.0-2
|
||
|
- License to ISC, remove tabs
|
||
|
|
||
|
* Fri Dec 23 2011 Brendan Jones <brendan.jones.it@gmail.com> - 0.5.0-1
|
||
|
- Initial build
|