]> git.pld-linux.org Git - packages/libPropList.git/blob - libPropList.spec
- updated to 0.10.1.
[packages/libPropList.git] / libPropList.spec
1 Summary:        library for reading/writing GNUstep-style defaults databases
2 Summary(pl):    Biblioteka libPropList
3 Name:           libPropList
4 Version:        0.10.1
5 Release:        1
6 License:        GPL
7 Group:          X11/Libraries
8 Group(pl):      X11/Biblioteki
9 Source0:        ftp://ftp.windowmaker.org/pub/libs/%{name}-%{version}.tar.gz
10 URL:            http://www.windowmaker.org/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %define         _prefix         /usr
14
15 %description
16 The libPropList library, hereafter referred to as PL, uses an opaque data
17 type to represent a tree structure made of strings, data blocks, arrays and
18 dictionaries (key-value pair lists). This structure can be manipulated,
19 written out to and read in from a file, and synchronized with the contents
20 of a file. The purpose of PL is to closely mimick the behaviour of the
21 property lists used in GNUstep/OPENSTEP (there formed with the NSString,
22 NSData, NSArray and NSDictionary classes) and to be compatible with it. PL
23 enables programs that use configuration or preference files to make these
24 compatible with GNUstep/OPENSTEP's user defaults handling mechanism,
25 without needing to use Objective-C or GNUstep/OPENSTEP themselves.
26
27 %description -l pl
28 libPropList jest bibliotek± wymagan± przez Window Maker'a.
29
30 %package devel
31 Summary:        libPropList libraries
32 Summary(pl):    Biblioteki libPropList
33 Group:          Development/Libraries
34 Group(fr):      Development/Librairies
35 Group(pl):      Programowanie/Biblioteki
36 Requires:       %{name} = %{version}
37
38 %description devel
39 libPropList headers files
40
41 %description devel -l pl
42 Ten pakiet zawiera pliki nag³ówkowe i biblioteki niezbêdne do tworzenia
43 aplikacji korzystaj±cych z biblioteki libPropList.
44
45 %package static
46 Summary:        libPropList static libraries
47 Summary(pl):    Biblioteki statyczne libPropList
48 Group:          Development/Libraries
49 Group(fr):      Development/Librairies
50 Group(pl):      Programowanie/Biblioteki
51 Requires:       %{name}-devel = %{version}
52
53 %description static
54 This package contains static libraries for building libPropList
55 applications.
56
57 %description static -l pl
58 Ten pakiet zawiera statyczne biblioteki niezbêdne do tworzenia aplikacji
59 korzystaj±cych z biblioteki libPropList.
60
61 %prep
62 %setup -q 
63
64 %build
65 LDFLAGS="-s"; export LDFLAGS
66 %configure
67
68 make 
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72 make install DESTDIR=$RPM_BUILD_ROOT 
73
74 strip $RPM_BUILD_ROOT%{_libdir}/lib*.so.*.*
75
76 gzip -9nf AUTHORS ChangeLog NEWS README
77
78 %post   -p /sbin/ldconfig
79 %postun -p /sbin/ldconfig
80
81 %clean
82 rm -r $RPM_BUILD_ROOT
83
84 %files
85 %attr(755,root,root) %{_libdir}/lib*.so.*.*
86
87 %files devel
88 %defattr(644,root,root,755)
89 %doc {AUTHORS,ChangeLog,NEWS,README}.gz
90 %attr(755,root,root) %{_libdir}/lib*.so
91 %attr(755,root,root) %{_libdir}/lib*.la
92 %{_includedir}/*.h
93
94 %files static
95 %attr(644,root,root) %{_libdir}/lib*.a
This page took 0.071001 seconds and 4 git commands to generate.