111 lines
2.8 KiB
RPMSpec
111 lines
2.8 KiB
RPMSpec
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
Name: libplist
|
|
Version: 0.16
|
|
Release: 2%{?dist}
|
|
Summary: Library for manipulating Apple Binary and XML Property Lists
|
|
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2+
|
|
URL: http://matt.colyer.name/projects/iphone-linux/
|
|
|
|
Source0: http://cloud.github.com/downloads/JonathanBeck/%{name}/%{name}-%{version}.tar.bz2
|
|
Patch0: libplist-0.16-fix-python-lib-path.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: python-devel
|
|
BuildRequires: swig
|
|
BuildRequires: cmake
|
|
|
|
%description
|
|
libplist is a library for manipulating Apple Binary and XML Property Lists
|
|
|
|
%package devel
|
|
Summary: Development package for libplist
|
|
Group: Development/Libraries
|
|
Requires: libplist = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
%{name}, development headers and libraries.
|
|
|
|
%package python
|
|
Summary: Python package for libplist
|
|
Group: Development/Libraries
|
|
Requires: libplist = %{version}-%{release}
|
|
Requires: python
|
|
|
|
%description python
|
|
%{name}, python libraries and support
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .fixpython
|
|
|
|
%build
|
|
export CMAKE_PREFIX_PATH=/usr
|
|
%{cmake} .
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
export CMAKE_PREFIX_PATH=/usr
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS COPYING.LESSER README
|
|
%{_bindir}/plutil
|
|
%{_bindir}/plutil-%{version}
|
|
%{_libdir}/libplist.so.0
|
|
%{_libdir}/libplist.so.0.0.16
|
|
%{_libdir}/libplist++.so.0
|
|
%{_libdir}/libplist++.so.0.0.16
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/pkgconfig/libplist.pc
|
|
%{_libdir}/pkgconfig/libplist++.pc
|
|
%{_libdir}/libplist.so
|
|
%{_libdir}/libplist++.so
|
|
%{_includedir}/plist
|
|
|
|
%files python
|
|
%defattr(-,root,root,-)
|
|
%{python_sitearch}/libplist
|
|
|
|
%changelog
|
|
* Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-2
|
|
- Add python patch and c++ bindings
|
|
|
|
* Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-1
|
|
- New upstream 0.16 release
|
|
|
|
* Tue Oct 20 2009 Peter Robinson <pbrobinson@gmail.com> 0.15-1
|
|
- New upstream 0.15 release
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.13-1
|
|
- New upstream 0.13 release
|
|
|
|
* Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-2
|
|
- Further review updates
|
|
|
|
* Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-1
|
|
- Update to official tarball release, some review fixes
|
|
|
|
* Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.0-0.1
|
|
- Initial package
|