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