diff --git a/README.md b/README.md index 767dcc5..0f53851 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # sratom +Sratom is a library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax. + diff --git a/sratom.spec b/sratom.spec new file mode 100644 index 0000000..cb23c18 --- /dev/null +++ b/sratom.spec @@ -0,0 +1,84 @@ +Name: sratom +Version: 0.4.4 +Release: 1mamba +Summary: A library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://drobilla.net/software/sratom/ +Source: http://download.drobilla.net/sratom-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: liblv2-devel +BuildRequires: libserd-devel +BuildRequires: libsord-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Sratom is a library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax. + +%package -n lib%{name} +Group: System/Libraries +Summary: A library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +./waf configure \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} + +./waf %{?_smp_mflags} build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +./waf install --destdir=%{buildroot} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libsratom-0.so.* +%doc COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/sratom-0 +%dir %{_includedir}/sratom-0/sratom +%{_includedir}/sratom-0/sratom/sratom.h +%{_libdir}/libsratom-0.so +%{_libdir}/pkgconfig/sratom-0.pc +%doc NEWS README + +%changelog +* Sat Jan 04 2014 Automatic Build System 0.4.4-1mamba +- automatic update by autodist + +* Sat Mar 02 2013 Automatic Build System 0.4.2-1mamba +- automatic version update by autodist + +* Thu Jan 31 2013 Silvan Calarco 0.4.0-1mamba +- package created by silvan using the webbuild interface