serd/serd.spec

100 lines
2.8 KiB
RPMSpec

#
# spec file for package serd
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define soname 0
Name: serd
Version: 0.22.0
Release: 0
Summary: A lightweight C library for RDF syntax
License: ISC
Group: System/Libraries
Url: http://drobilla.net/software/serd/
Source0: http://download.drobilla.net/serd-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: doxygen
BuildRequires: graphviz
BuildRequires: pkg-config
BuildRequires: python-base
%description
A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples.
%package -n serdi
Summary: Read and write RDF syntax
Group: Productivity/Editors/Other
%description -n serdi
Read and write RDF syntax.
%package -n libserd-0-%{soname}
Summary: A lightweight C library for RDF syntax
Group: System/Libraries
%description -n libserd-0-%{soname}
A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples.
%package -n libserd-0-devel
Summary: Development files for libserd
Group: Development/Libraries/C and C++
Requires: libserd-0-%{soname} = %{version}
%description -n libserd-0-devel
Development files for libserd.
%prep
%setup -q
%build
export CFLAGS='%{optflags}'
export CXXFLAGS='%{optflags}'
./waf configure \
--prefix=%{_prefix} \
--libdir=%{_libdir} \
--docdir=%{_defaultdocdir} \
--docs
# waf only understands -j, so do not use smp_mflags
./waf build -v %{?jobs:-j%jobs}
%install
./waf install --destdir=%{?buildroot}
%post -n libserd-0-%{soname} -p /sbin/ldconfig
%postun -n libserd-0-%{soname} -p /sbin/ldconfig
%files -n serdi
%defattr(0644,root,root,0755)
%attr(0755,root,root) %{_bindir}/serdi
%{_mandir}/man1/serdi.1*
%files -n libserd-0-%{soname}
%defattr(0644,root,root,0755)
%doc AUTHORS COPYING NEWS README
%{_libdir}/libserd-0.so.%{soname}*
%files -n libserd-0-devel
%defattr(0644,root,root,0755)
%{_libdir}/libserd-0.so
%{_includedir}/serd-0/
%{_libdir}/pkgconfig/serd-0.pc
#%{_defaultdocdir}/serd-0/
#%{_mandir}/man3/*
%changelog