source: projects/specs/trunk/lib/libp/libplist/libplist-vl.spec @ 1865

Revision 1865, 3.5 KB checked in by inagaki, 14 years ago (diff)

built with rpm-4.8.1: libcdio, libexif, libmowgli, libplist, libusb, exif, mcs

Line 
1Name:           libplist
2Summary:        Library for manipulating Apple Binary and XML Property Lists
3Version:        1.3
4Release:        2%{?_dist_release}
5
6Group:          System Environment/Libraries
7License:        LGPLv2+
8URL:            http://matt.colyer.name/projects/iphone-linux/
9
10Source0:        http://cloud.github.com/downloads/JonathanBeck/%{name}/%{name}-%{version}.tar.bz2
11
12BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
13BuildRequires: libxml2-devel
14BuildRequires: glib2-devel
15BuildRequires: python-devel
16BuildRequires: swig
17BuildRequires: cmake
18
19%description
20libplist is a library for manipulating Apple Binary and XML Property Lists
21
22%package devel
23Summary: Development package for libplist
24Group: Development/Libraries
25Requires: %{name} = %{version}-%{release}
26
27%description devel
28%{name}, development headers and libraries.
29
30%package python
31Summary: Python package for libplist
32Group: Development/Libraries
33Requires: %{name} = %{version}-%{release}
34Requires: python
35
36%description python
37%{name}, python libraries and support
38
39%prep
40%setup -q
41
42%build
43export CMAKE_PREFIX_PATH=/usr
44%{cmake} .
45
46make %{?_smp_mflags}
47
48%install
49export CMAKE_PREFIX_PATH=/usr
50rm -rf $RPM_BUILD_ROOT
51make install DESTDIR=$RPM_BUILD_ROOT
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56%post -p /sbin/ldconfig
57
58%postun -p /sbin/ldconfig
59
60%files
61%defattr(-,root,root,-)
62%doc AUTHORS COPYING.LESSER README
63%{_bindir}/plutil
64%{_bindir}/plutil-%{version}
65%{_libdir}/libplist.so.*
66%{_libdir}/libplist++.so.*
67
68%files devel
69%defattr(-,root,root,-)
70%{_libdir}/pkgconfig/libplist.pc
71%{_libdir}/pkgconfig/libplist++.pc
72%{_libdir}/libplist.so
73%{_libdir}/libplist++.so
74%{_includedir}/plist
75
76%files python
77%defattr(-,root,root,-)
78%{python_sitearch}/plist
79
80%changelog
81* Tue Sep 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3-2
82- rebuilt with rpm-4.8.1 for pkg-config
83
84* Thu Apr 29 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3-1
85- initial build for Vine Linux
86
87* Tue Apr 20 2010 Peter Robinson <pbrobinson@gmail.com> 1.3-1
88- Upstream stable 1.3 release
89
90* Sat Jan 23 2010 Peter Robinson <pbrobinson@gmail.com> 1.2-1
91- Upstream stable 1.2 release
92
93* Sat Jan  9 2010 Peter Robinson <pbrobinson@gmail.com> 1.0.0-5
94- Updated to the new python sysarch spec file reqs
95
96* Mon Dec  7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-4
97- and once more with feeling
98
99* Mon Dec  7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-3
100- Further updated fixes for the spec file
101
102* Mon Dec  7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-2
103- Drop upstreamed patch
104
105* Mon Dec  7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-1
106- Upstream stable 1.0.0 release
107
108* Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-3
109- Actually add patch for python
110
111* Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-2
112- Add python patch and c++ bindings
113
114* Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-1
115- New upstream 0.16 release
116
117* Tue Oct 20 2009 Peter Robinson <pbrobinson@gmail.com> 0.15-1
118- New upstream 0.15 release
119
120* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
121- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
122
123* Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.13-1
124- New upstream 0.13 release
125
126* Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-2
127- Further review updates
128
129* Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-1
130- Update to official tarball release, some review fixes
131
132* Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.0-0.1
133- Initial package
Note: See TracBrowser for help on using the repository browser.