diff --git a/README.md b/README.md index 6465d16..57cff00 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # liblrdf +A lightweight RDF library with special support for LADSPA plugins. + diff --git a/liblrdf.spec b/liblrdf.spec new file mode 100644 index 0000000..119477e --- /dev/null +++ b/liblrdf.spec @@ -0,0 +1,83 @@ +Name: liblrdf +Version: 0.5.0 +Release: 1mamba +Summary: A lightweight RDF library with special support for LADSPA plugins +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sourceforge.net/projects/lrdf +Source: git://github.com/swh/LRDF.git/master/LRDF-%{version}.tar.bz2 +#Source: http://downloads.sourceforge.net/sourceforge/lrdf/%{name}-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libraptor-devel +## AUTOBUILDREQ-END +BuildRequires: ladspa-devel +BuildRequires: libxml2-devel +BuildRequires: pkgconfig +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A lightweight RDF library with special support for LADSPA plugins. + +%package devel +Summary: Devel package for %{name} +Group: Development/Libraries +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +A lightweight RDF library with special support for LADSPA plugins. +This package contains static libraries and header files need for development. + +%prep +%setup -q -n LRDF-%{version} +sed -i "s|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|" configure.ac + +%build +./autogen.sh +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_libdir}/liblrdf.so.* +%doc AUTHORS COPYING + +%files devel +%defattr(-,root,root) +%{_includedir}/*.h +%{_datadir}/ladspa +%{_libdir}/liblrdf.so +%{_libdir}/liblrdf.a +%{_libdir}/liblrdf.la +%{_libdir}/pkgconfig/*.pc +%doc ChangeLog NEWS README + +%changelog +* Sun Apr 28 2013 Automatic Build System 0.5.0-1mamba +- update to 0.5.0 + +* Fri Oct 16 2009 Silvan Calarco 0.4.0-4mamba +- rebuilt against libopenssl 0.9.8 + +* Tue Oct 30 2007 Aleph0 0.4.0-3mamba +- specfile updated and fixed +- add missing build requirements + +* Sat Feb 19 2005 Silvan Calarco 0.4.0-2qilnx +- added missing liblrdf.so + +* Sat Feb 19 2005 Silvan Calarco 0.4.0-1qilnx +- package created by autospec