|
|
|
@ -2,8 +2,8 @@
|
|
|
|
|
%global maj 0
|
|
|
|
|
|
|
|
|
|
Name: lilv
|
|
|
|
|
Version: 0.24.2
|
|
|
|
|
Release: 9%{?dist}
|
|
|
|
|
Version: 0.24.4
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: An LV2 Resource Description Framework Library
|
|
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
@ -11,13 +11,13 @@ URL: http://drobilla.net/software/lilv/
|
|
|
|
|
Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2
|
|
|
|
|
BuildRequires: doxygen
|
|
|
|
|
BuildRequires: graphviz
|
|
|
|
|
BuildRequires: sord-devel >= 0.13.0
|
|
|
|
|
BuildRequires: sord-devel >= 0.14.0
|
|
|
|
|
BuildRequires: sratom-devel >= 0.4.4
|
|
|
|
|
BuildRequires: lv2-devel >= 1.14.0
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
|
BuildRequires: swig
|
|
|
|
|
BuildRequires: numpy
|
|
|
|
|
BuildRequires: serd-devel >= 0.14.0
|
|
|
|
|
BuildRequires: serd-devel >= 0.18.0
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
|
|
|
|
@ -56,7 +56,7 @@ sed -i -e "s|'-ftest-coverage'\]|\
|
|
|
|
|
'-ftest-coverage' \] + '%{optflags}'.split(' ')|" wscript
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}"
|
|
|
|
|
%set_build_flags
|
|
|
|
|
export LINKFLAGS="%{__global_ldflags}"
|
|
|
|
|
%{__python2} waf configure -v --prefix=%{_prefix}\
|
|
|
|
|
--libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\
|
|
|
|
@ -68,10 +68,6 @@ export LINKFLAGS="%{__global_ldflags}"
|
|
|
|
|
%{__python2} waf -v install --destdir=%{buildroot}
|
|
|
|
|
chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.*
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
./build/test/lilv_test
|
|
|
|
|
|
|
|
|
@ -98,6 +94,11 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.*
|
|
|
|
|
%{python2_sitelib}/%{name}.*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Mon Jul 30 2018 Guido Aulisi <guido.aulisi@gmail.com> - 0.24.4-1
|
|
|
|
|
- Update to 0.24.4
|
|
|
|
|
- Remove ldconfig scriptlets
|
|
|
|
|
- Minor spec cleanup
|
|
|
|
|
|
|
|
|
|
* Sun Jul 15 2018 Guido Aulisi <guido.aulisi@gmail.com> - 0.24.2-9
|
|
|
|
|
- Fix FTBFS due to the move of /usr/bin/python into a separate package
|
|
|
|
|
- Add BR for gcc and gcc-c++
|
|
|
|
|